Variables not passing Correctly

A

Anonymous

Guest
Maybe it has something to do with this:
Code:
$ID= $_POST['ID']; 
$thePlotID= $_POST['thePlotID'];
Try using this one:
Code:
$ID= $HTTP_POST_VARS['ID']; 
$thePlotID= $HTTP_POST_VARS['thePlotID'];
Maybe your hosting provider is using a php version previous to
Note: Introduced in 4.1.0. In earlier versions, use $HTTP_GET_VARS.
bye!
 
Back
Top