Jump to content

[SOLVED] Help? Very simple, done tons just abit


plznty

Recommended Posts

<?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?

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.