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