View Single Post
Old 12-01-2012, 05:32 AM   PM User | #8
stevenmw
Regular Coder

 
stevenmw's Avatar
 
Join Date: Jun 2007
Location: OK
Posts: 446
Thanks: 26
Thanked 30 Times in 30 Posts
stevenmw is an unknown quantity at this point
Through the use of PHP.
Quote:
Originally Posted by stevenmw View Post
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..
stevenmw is offline   Reply With Quote