dns78727
02-14-2004, 10:05 AM
If you're using PHP for form processing, don't forget to include
extract($_GET); // Pull in any variables put in URL by a GET
and/or
extract($_POST); // Pull in any posted variables
depending on whether your form does a get ot put. Unlike some hosting configurations, discountasp does not have PHP configured to automatically pull in the form variables.
extract($_GET); // Pull in any variables put in URL by a GET
and/or
extract($_POST); // Pull in any posted variables
depending on whether your form does a get ot put. Unlike some hosting configurations, discountasp does not have PHP configured to automatically pull in the form variables.