Did your script receive these variables via POST or GET?
If so, look here:
http://www.php.net/manual/en/reserved.variables.php
http://www.php.net/manual/en/security.registerglobals.php
As far as
> Did your script receive these variables via POST or GET?
I don't know which file to look at to find this method of delivery.
Thanks for your time,
Billy
On 3/8/03 3:16 PM, in article Ycsaa.50985$zb.15...@twister.socal.rr.com,
It will be in plain HTML, within the feedback form page. Look for a tag
like...
<form action="mailto.php" method="POST">
I f method is POST or GET, then previous advice applies.
On 3/8/03 3:52 PM, in article DKsaa.50995$zb.15...@twister.socal.rr.com,
He writes this about the upgrade I used, and I don't know how to get back...
"NOTE regarding PHP versions 4.2.x and above: If your PHP scripts cease to
work after upgrading to 4.2.x, the problem is most likely with my module.
There have been many changes in PHP 4.2.x and you need to read the
http://www.php.net/release_4_2_1.php release announcement and the
http://www.php.net/manual/en/language.variables.predefined.php explanations
on the PHP site very carefully. You will probably have to change many small
things in your code, I know that I had to update every single one of my PHP
pages. Do not write me if your variables/data are not passed from page to
page!"
Still needing help...
Billy
On 3/8/03 3:52 PM, in article DKsaa.50995$zb.15...@twister.socal.rr.com,
"<>" <loop...@44.255.255.255> wrote:
On 3/8/03 3:52 PM, in article DKsaa.50995$zb.15...@twister.socal.rr.com,
"<>" <loop...@44.255.255.255> wrote:
Looks like a register_globals issue. You need to use predefined variables
as below:
If request method is post:
$to = "m...@mycute.com"; //Destination Email ID
$name = $HTTP_POST_VARS['name']; //Name of the Person
$email = $HTTP_POST_VARS['email']; //Email Id of the person
$feedback = $HTTP_POST_VARS['feedback']; //Feedback detail
If it's get:
$to = "m...@mycute.com"; //Destination Email ID
$name = $HTTP_GET_VARS['name']; //Name of the Person
$email = $HTTP_GET_VARS['email']; //Email Id of the person
$feedback = $HTTP_GET_VARS['feedback']; //Feedback detail
Just a point. You can also use $_POST['name'] or $_GET['name'] but older
versions of PHP will not recognise this.
--
Charles Sweeney
On 3/10/03 11:11 AM, in article b4ide4$209j0t$1...@ID-162618.news.dfncis.de,
On 3/10/03 11:11 AM, in article b4ide4$209j0t$1...@ID-162618.news.dfncis.de,
"Charles Sweeney" <m...@charlessweeney.com> wrote: