Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I currently have this:

function submit()
{
    document.getElementById("lostpasswordform").click(); // Simulates button click
    document.lostpasswordform.submit(); // Submits the form without the button
}

<body onload="submit()">

    <form name="lostpasswordform" id="lostpasswordform" action="/" method="post">
        <input type="hidden" name="user_login" id="user_login" class="input" value="<?php echo ($user_login); ?>" />
    </form>

</body>

it works on PC, but for some reason, javascript is not execute from iPhone so I'm wondering if theres a way to auto-submit the form using PHP instead of JS?

Thanks

share|improve this question
Is there any reason to not use body onload="document.lostpasswordform.submit()"? – Sunish Menon Jun 21 '12 at 4:56

4 Answers

up vote 1 down vote accepted

There's no way to trigger a form submission server-side. You'd have to use a language that works in the DOM like JavaScript for this one. From what you've given us, I don't see why it wouldn't work with the way you have it set up now.

Check your code and if it still doesn't work, I'd suggest asking this question in a different context; something along the lines of getting your JavaScript to work on the iPhone instead of dumping it altogether.

share|improve this answer

As esqew points out, you can't perform a client side action from the server. Your options are to rework your function so it doesn't need the autosubmit (maybe you could use a GET variable rather than posting) or finding a work around for the iPhone.

For a workaround - the .click() function doesn't work on iPhones. You could try one of the solutions that have come up from this problem before such as using tap or this larger touch handler function.

share|improve this answer

No, PHP cannot do that, but your problem is due to the way the iPhone handles click events. Here's background info and a workaround. It seems like all you need is an empty onclick function to trigger it, so:

// untested
var f = document.getElementById('lostpasswordform');
f.onclick = function () { };
document.lostpasswordform.submit();

You might want to think of the experience for a user though -- why would clicking inside a form automatically submit the form? What's wrong with a submit button?

share|improve this answer

IF you are php programmer then you might not want any javascript answer. the best solution to this is

1.USE A PROXY like paros or HTTP analyser the will give u the insight how site's form is structued

2.notE down the forms POST OR GET VALUE SYNTAX FROM THE HTTP analyzer or paros proxy.

read this tutorial it is the best tutorial out there

http://www.html-form-guide.com/php-form/php-form-submit.html

4.change the content of $_post or $_get according to their structure which you have noted down in

paros or HTTP analyser

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.