i will sound like an idiot but i am trying to post vars back to an email address from a html page ie.
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#88a8e8" text="#f0fdfd">
<select name="select">
<option>1 </option>
<option>2 </option>
<option>3 </option>
<option>4 </option>
<option>5 </option>
</select>
<textarea name="test" cols="40" rows="5"></textarea>
</p>
<p>
<input type="submit" name="Post" value="Submit Job" action="<?php mail ('mail
addrress@somewhere.com','Subject : help',(vars select & test),"addrress@somewhere.com");
?>"
I would like to know how to access the vars from php to post via a button , any help would be greatly appreshiated