Page 1 of 1

A litle pause in between ....

Posted: Thu Jan 16, 2003 3:45 am
by Skywalker
Let me explane what I want to do. I have a mail script that works fine.
1 lets say the user fild in the html forum, klicks on submit.

Then ther will be an action lets say the scripts name is insert-data.php
When the user has klicked it is going to the script insert-data.php, that script inserts everything in to the database.

But in that same script you are using $_post['Name'] for example
then when everything is inserted, is it then also posible to do

<form method="post" action="mail.php">
<inputa type=hidden value="<?php $_post['Name'] ?> ">
</form>

and send it then to the next script with an submit button? tho send then the mail.

Let me know if somebody knows,

Greathings Skywalker

Posted: Thu Jan 16, 2003 4:43 am
by volka
except that it should be

Code: Select all

..
<input type=hidden value="<?php echo $_POST['Name'] ?> ">
...
why shouldn't it be possible?
Just try it :D

Posted: Fri Jan 17, 2003 4:07 am
by Skywalker
thx ;)