Jump to content

[SOLVED] How to do this form? L@@K please!!


Robert Elsdon

Recommended Posts

<form action="populate.php?url=here" method="post" name="url">

 

Your URL: <input type="text" name="url">

 

<input type='submit' value='Submit URL'>

</form>

 

Hello there, i really need help on this as i don't have a clue on what to do! :( Hopefully you guys canhelp me do what i want to do?

 

on the form action where it says populate.php?url= i want it so whatever you type in the Your URL input goes on the end of populate?url= ? I hope you people know what i mean :( PLEASE HELP?

 

Thanks alot, Kind regards

 

Robert

Link to comment
https://forums.phpfreaks.com/topic/166378-solved-how-to-do-this-form-lk-please/
Share on other sites

can you redo the form as i dont know what you mean?

 

 

<form action="populate.php?url=<?php echo $_POST['url'] ?>" method="post" name="url">
Name: <input type="text" name="url" />
<input type='submit' value='Submit URL'>
</form>

 

Like that? if it is like that, That doesnt work either :( its harder then it looks & sounds ... Any other ideas?

 

Regards, Robert

can you redo the form as i dont know what you mean?

 

 

<form action="populate.php?url=<?php echo $_POST['url'] ?>" method="post" name="url">
Name: <input type="text" name="url" />
<input type='submit' value='Submit URL'>
</form>

 

Like that? if it is like that, That doesnt work either :( its harder then it looks & sounds ... Any other ideas?

 

Regards, Robert

 

 

did it myself :)

 

<form action="populate.php?url=<?php echo $_GET ['url'] ?>" method="post" name="url">

Name: <input type="text" name="url" />

<input type='submit' value='Submit URL'>

</form>

 

i chnaged

<?php echo $_POST['url'] ?> to <?php echo $_GET ['url'] ?>

 

Thanks for the help :) SOLVED!

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.