Hi;

Once in a while I try to interact with my php/MySQL data-input website via my PocketPC. Usually, no problem (other than having to do a lot of scrolling on pages never meant to fit in a 240 X 290 window).

I recently built a fairly complex input form page that works just fine with a regular computer/browser...but when I submit (POST) form data using the PocketPC (using Pocket Internet Explorer) the data does not seem to post...nothing is saved and the script that receives it looks like it never saw any data arrive.

😕

Any suggestions as to where to start on this puzzler?

Thanks.

    2 years later

    i think you have to change the form method from post to pass the variables via URL ... some times i face the same, and try also to use the:
    $yourvariable=$HTTP_GET_VARS['yourvariable'];

      Have you specified POST as being the form's method of submitting? If so, and you're still having problems, try using GET and using the $_GET variable.

        Write a Reply...