[PHP] Passing the value of a variable from 1 PHP form to another

2003-06-11 Thread Denis Croombs
I am trying to pass the value of a variable from 1 PHP form to another but
cann find out how to do this any clues or links very welcome

Thanks

Denis Croombs

www.just-servers.co.uk
www.just-hosting.net


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Example forms

2001-07-24 Thread Denis Croombs

Hi
I am transfering a NT IIS website with forms to APACHE and PHP, but need
examples of how the forms work, can you please guide as to where I can find
some and any other data to asist me as this is the first time I have used
PHP.

Many thanks

Denis Croombs


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] Emailing the results of form entry NOT working

2001-08-02 Thread Denis Croombs

I am using the form below, and it works except for sending the message to
the user, any ideas/clues ?
Being so close to it working is driving me nuts !




Feedback Form



Please provide me your feedback!
Enter your name: 
Enter you e-mail: 
Enter your feedback:






http://www.imsltd.com/feedback.html";);
}
$to = "[EMAIL PROTECTED]";
$subject = "Feedback";
$mail_body = "Feedback From Your Site\n";
$mail_body .= "Sender's Name: $name\n";
$mail_body .= "Sender's E-Mail: $email\n";
$mail_body .= "Feedback: $feedback\n\n";
$mail_headers = "From: My Web Site <> \n";
$mail_headers .= "Reply-To: $sender_email\n\n";
mail($mail_to, $mail_subject, $mail_body, $mail_headers);
?>



Feedback Form


Thank you for your feedback.You have sent the following
feedback:
Your Feedback Message:

Your Name: 
Your Email: 



Many thanks

Denis Croombs


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]