Thread: Quick PHP Help
View Single Post
02-05-2005, 02:29 AM
#6
derek lapp is offline derek lapp
Status: design rockstar
Join date: Jan 2005
Location: guelph, ontario
Expertise:
Software:
 
Posts: 2,246
iTrader: 0 / 0%
 

derek lapp is on a distinguished road

  Old

is this for a mailing list or a contact form? dpeending on which, it'll detemrine what you do witht he variable, but regardless, you get the information the same way

Code:
<form action="yourfile.php" method="post">
	<span class="pagedef">Sign up here . . .</span>
	<input size="15" value="Enter your e-mail addresshere" name="address" />
	<input type="submit" value="Join" />
</form>
php
Code:
<?php

	$address = $_POST["address"];

	// whatever you're doing with this info goes here

?>