View Single Post
Old 05-11-2005, 03:41 PM   #6 (permalink)
manalone
Once upon a time...
 
I reckon you should replace your script with a simple one to test if post vars are working... try this
Code:
<html>
  <body>
    <pre>
<?php
      print_r($_POST);
      echo("<hr />");
      print_r($_GET);
?>
</pre>
</body>
</html>
__________________
--
Man Alone
=======
Abstainer: a weak person who yields to the temptation of denying himself a pleasure.
Ambrose Bierce, The Devil's Dictionary.
manalone is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43