![]() |
Available news archives:
comp.lang.tcl
-
comp.lang.python
-
comp.security.firewalls
-
sci.crypt -
comp.lang.php -
comp.lang.javascript
|
|
comp.lang.php archive_POST variable help
From: <deeper@gmail.com>
Date: Mon Oct 03 2005 - 21:20:26 CEST
hey all,
I have a PHP drive contact page which makes use of the basic mail()
The code looks like:
$host= $_SERVER['REMOTE_ADDR'];
$recipient="me@them.com";
############ EMAIL BODY ############
$email_body.="Name: " . $_POST[name] . "\n";
mail($recipient,$subject,$email_body,$header,$visited_page);
What i would like the script to do is send the page in which the user
Am i missing something glaringly obvious?
|