View Single Post
  #32  
Old 05-14-2004, 02:50 AM
 
jeremye jeremye is offline
 

Senior Member
  
Join Date: Apr 2004
Location: Philadelphia, PA
Posts: 158
 

Default

Going on a hunch that your problem is with register_globals, try adding this code to the top of your php file:

Code:
/* Assign variables if register_globals = OFF */ $StartMonth = $_POST['StartMonth']; $StartDay = $_POST['StartDay']; $StartYear = $_POST['StartYear']; $EndMonth = $_POST['EndMonth']; $EndDay = $_POST['EndDay']; $EndYear = $_POST['EndYear']; $report_type = $_POST['report_type'];

This will assign all the variables from the _POST array. Let me know if this works.
__________________
Jeremy
X-Cart Gold v3.4.14 [Linux/Apache]
Heavily Modded
Reply With Quote