how do you pass a variable from a text field to a php script using scriptcase.
LIKE:
<input type=“text” name=“email” value = “email@email.com” >
How do you declare the variable. E.G.
<?
$email = $_REQUEST[email];
echo “This is the email: $email from the text field fom a form”;
?>