Posted by barret bonden on 12/08/05 20:44
Is passing a variable from one php file to another with the $_post function
OK?
Are there any potential problems with session "leakage" of virables from one
user to another ??
Have one file with a form:
<form action ="t7a.php" method ="post" >
last name <input type = "text" name ="last">
first name <input type = "text" name ="first">
<INPUT TYPE=SUBMIT VALUE="Send It!">
</form>
calling another:
(in called form t7a)
$last=$_POST['last']; //gets the variable from 1st file
Navigation:
[Reply to this message]
|