plznty Posted September 26, 2009 Share Posted September 26, 2009 <?php if ( $_GET["view"] === make) { echo " <title>Link Generator</title> <form action='generator.php?view=link' target='generator'> <input type='text' name='name' value='' /> <p> <input type='text' name='topic' value='' /> <p> <input type='submit' value='Generate' /> </form> <iframe src='generator.php?view=link' name='generator'> "; } if ( $_GET["view"] === link) { $name = $_GET["name"]; $topic = $_GET["topic"]; echo "<input type='text' name='link' value='http://wteva.com/?n=$name&thread=$topic' size='30' readonly='readonly' />"; } ?> The iframe does not display generator.php?view=link&name=&topic= it displays generator.php?name=&topic= Help me? Quote Link to comment https://forums.phpfreaks.com/topic/175623-solved-help-very-simple-done-tons-just-abit/ Share on other sites More sharing options...
mikesta707 Posted September 26, 2009 Share Posted September 26, 2009 try changing your form's method to get Quote Link to comment https://forums.phpfreaks.com/topic/175623-solved-help-very-simple-done-tons-just-abit/#findComment-925442 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.