1

I'm trying to use forms with post method to send data through pages, but after the submit the $_POST array is empty. Using get method instead, the $_GET array works.

Is there a fix? Thanks

1 Answers1

0

You will have to use $_GET. TideSDK only uses method="get" and you dont even have to add the method to your form.

Mike Szyndel
  • 10,461
  • 10
  • 47
  • 63
Omega
  • 28
  • 4
  • But what about long forms with more than 2048 characters? Then "post" should be used! – dude Jun 09 '15 at 12:04