PHP form processing

Discussion in 'HTML / PHP / JavaScript / CSS' started by dns78727, Feb 14, 2004.

  1. 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.
     

Share This Page