passing variables - POST or GET

A

Anonymous

Guest
Is there a way to pass variables after the "?" on a URL using the POST method rather than the GET method? It seems they go GET by default, so the variables are visible, which encourage some folks to screw around with "what if's" by changing their values. If they could be sent POST, then they wouldn't be visible....
 
You can only use $_POST by posting information via forms... what you could do is make a form with hidden values and then replace links with href="javascript:formname.submit()"
 
Back
Top