TGWSE_GY Posted September 18, 2009 Share Posted September 18, 2009 Ok I have my index.php file <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Untitled Document</title> <link rel="stylesheet" type="text/css" href="view.css" media="all"> </head> <body> <table id="content" align="center" width="750" height="100%" cellspacing="0" cellpadding="0"> <tr valign="top"> <td align="left" width="200" bgcolor="#FFFFFF"> <br /> <br /> <br /> <a href="index.php?section=home">Edit Home</a><br /><hr /> <a href="index.php?section=locations">Edit Locations</a><br /><hr /> <a href="index.php?section=accommodations">Edit Accommodations</a><br /><hr /> <a href="index.php?section=reservations">Edit Reservations</a><br /><hr /> <a href="index.php?section=restaurant">Edit Restaurant</a><br /><hr /> <a href="index.php?section=201">Edit Room 201</a><br /><hr /> <a href="index.php?section=202">Edit Room 202</a><br /><hr /> <a href="index.php?section=203">Edit Room 203</a><br /><hr /> <a href="index.php?section=204">Edit Room 204</a><br /><hr /> <a href="index.php?section=205">Edit Room 205</a><br /><hr /> <a href="index.php?section=206">Edit Room 206</a><br /><hr /> <a href="index.php?section=207">Edit Room 207</a><br /><hr /> <a href="index.php?section=301">Edit Room 301</a><br /><hr /> <a href="index.php?section=302">Edit Room 302</a><br /><hr /> <a href="index.php?section=303">Edit Room 303</a><br /><hr /> <a href="index.php?section=304">Edit Room 304</a><br /><hr /> <a href="index.php?section=305">Edit Room 305</a> </td> <td align="center"> <?php include('contcond.php'); ?> </td> </tr> </table> </body> </html> Then I have contcond.php <?php $section = "1"; if (isset($_GET['section'])) { $section = $_GET['section']; } if($section="home"){ include('home.php'); }elseif($section="locations"){ include('locations.php'); }elseif($section="accommodations"){ include('accommodations.php'); }elseif($section="reservations"){ include('reservations.php'); }elseif($section="restaurant"){ include('restaurant.php'); }elseif($section="201"){ include('rooms.php'); }elseif($section="202"){ include('rooms.php'); }elseif($section="203"){ include('rooms.php'); }elseif($section="204"){ include('rooms.php'); }elseif($section="205"){ include('rooms.php'); }elseif($section="206"){ include('rooms.php'); }elseif($section="207"){ include('rooms.php'); }elseif($section="301"){ include('rooms.php'); }elseif($section="302"){ include('rooms.php'); }elseif($section="303"){ include('rooms.php'); }elseif($section="304"){ include('rooms.php'); }elseif($section="305"){ include('rooms.php'); }else{ include('welcome.php'); } ?> Here is a link to it http://www.innonmainmanasquan.com/admin/index.php Its not reloading the pages based off of the section it is just going to home.php no matter what. This is driving me absolutly nuts because I have done this 100's of times before and it has never not worked. Can someone point me in the right direction to what the issue could be. Thanks Quote Link to comment https://forums.phpfreaks.com/topic/174729-solved-pages-not-loading/ Share on other sites More sharing options...
mikesta707 Posted September 18, 2009 Share Posted September 18, 2009 your if statements are wrong. you want to compare the values, not assign them =;// the assignment operator ==;//the comparison operator [/code] if($section=="home"){ [/code] do that for all of your if statements Quote Link to comment https://forums.phpfreaks.com/topic/174729-solved-pages-not-loading/#findComment-920836 Share on other sites More sharing options...
TGWSE_GY Posted September 18, 2009 Author Share Posted September 18, 2009 OH DEAR GOD I can't believe I missed that, thanks. Quote Link to comment https://forums.phpfreaks.com/topic/174729-solved-pages-not-loading/#findComment-920843 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.