wadesmart 0 Posted November 26, 2012 Report Share Posted November 26, 2012 Ive been using what Ive learned this book for a long time now but Im stumped on something. I have a situation where I can not use a drop down list so I was going to use a links instead. link: href="index.php?p=performances?performance=Life_After_50" Im stumped as how to handle this code. In the index.php page I see the code: //Validate what page to show if(isset($_GET['p'])){ $p = $_GET['p']; } else if( isset($_POST['p'])) { //form $p = $_POST['p']; } else { $p = NULL; } But how does the page get redirected back to the performances.inc.php to access the performance variable data Life After 50? Quote Link to post Share on other sites
Larry 428 Posted November 27, 2012 Report Share Posted November 27, 2012 It needs to be "index.php?p=performances&performance=Life_After_50". The performances.inc.php file can then access $_GET['performance'], which will have a value of "Life_After_50". 1 Quote Link to post Share on other sites
wadesmart 0 Posted November 27, 2012 Author Report Share Posted November 27, 2012 I had just found that missing & right before you posted. It never fails. I can look for hours and as soon as I ask for help - I see the problem. But, it still wasnt working so it def helps to spell things correctly HAA Thanks Larry. Much appreciated - as usual Wade Quote Link to post Share on other sites
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.
Note: Your post will require moderator approval before it will be visible.