Search found 3 matches

by cpc
Wed May 20, 2009 1:46 pm
Forum: General Discussion
Topic: $_POST Var not showing up
Replies: 1
Views: 245

$_POST Var not showing up

Can't seem to make this work properly (file name is form.php referred to itself by <form>). The mail is sent and the file is written as long as I do not include the vars in the URL (Which, of course, does not suit my needs.) <?php   // Clean incoming variables. scrub_vars();   //get variables from U...
by cpc
Tue May 19, 2009 4:06 pm
Forum: PHP - Code
Topic: Form Submission dropping variables.
Replies: 2
Views: 306

Re: Form Submission dropping variables.

Thank you, Both name and number work as expected in the body of the page. This is a form that presents the information provided by the URL. The recipient of the form verifies and clicks submit. It seems that the variables are being stripped when the form is submitted as they no longer appear in the ...
by cpc
Tue May 19, 2009 2:34 pm
Forum: PHP - Code
Topic: Form Submission dropping variables.
Replies: 2
Views: 306

Form Submission dropping variables.

Hi All, I have a simple form that I am using to verify information. I am accessing the form via URL: http://www.domain.com/form.php?AccountN ... ccountName And pulling those variables into my page using: Your Account Number is: <?php echo "$AccountNumber"; ?> - Works as expected. Inserting...