hwg-languages archives | Apr 2000 | new search | results | previous | next |
Re: Another PHP problemby "Rossi Designs" <webmaster(at)rossidesigns.net> |
|
Is this what you want? <?PHP if (!isset($site)) { $sitecss = "http://www.narrowgauge.f2s.com/style.css"; $sitename = "Narrow Gauge on the web"; $siteurl = "http://www.narrowgauge.f2s.com"; } elseif ($site == "pwp") { $sitecss = "http://members.aol.com/reywob/newstyle.css"; $sitename = "Peters Web Page"; $siteurl = "http://members.aol.com/reywob"; } elseif ($site == "rm") { ...more here... } ?> If not maybe you could use a switch() statement instead of if() statements. Rossi Designs PO Box 1084 Holly Hill, FL 32125-1084 Phone : (904) 226-8979 URL : http://rossidesigns.net ----- Original Message ----- From: <Reywob(at)aol.com> To: <webmaster(at)rossidesigns.net>; <hwg-languages(at)hwg.org> Sent: Monday, April 24, 2000 3:20 AM Subject: Re: Another PHP problem | I tried that, but it wouldn't work. If I do that then it won't recognize the | } else{ statement. What's the fault in my code? | | <?PHP | if (!isset($site)) { | $site = ""; | } elseif ($site == "pwp") { | $sitecss = "http://members.aol.com/reywob/newstyle.css"; | $sitename = "Peters Web Page"; | $siteurl = "http://members.aol.com/reywob"; | } elseif ($site == "rm") { | ...more here... | } else { | $sitecss = "http://www.narrowgauge.f2s.com/style.css"; | $sitename = "Narrow Gauge on the web"; | $siteurl = "http://www.narrowgauge.f2s.com"; | } | ?> | | See it at http://www.narrowgauge.f2s.com/phorum |
HWG: hwg-languages mailing list archives, maintained by Webmasters @ IWA