Through the use of PHP.
Quote:
Originally Posted by stevenmw
You'll need to collect information from the form using PHP. So look into $_POST or $_GET
|
to give and idea
Code:
<form action="submit.php" name="">
<input type="text" name="user">
</form>
Then in submit.php you could do
PHP Code:
$user = $_POST['user'];
__________________
--
Thanks!
Last edited by stevenmw; 12-01-2012 at 05:38 AM..
|