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
A litle pause in between ....
Moderator: General Moderators
except that it should bewhy shouldn't it be possible?
Just try it
Code: Select all
..
<input type=hidden value="<?php echo $_POST['Name'] ?> ">
...Just try it