Gönder düğmesini tıklamadan sayfa yük bir formu göndermek nasıl?

0 Cevap

Is there a way to make a form submit "onload" without clicking a submit button with PHP? i saw some ways to make it with Javascript, but i love php and id like to make it with php.

Örneğin:

<form action="https://xxxxxx.com/yyy.php" method="post" id="foo">
<input type="hidden" name="LoginEmail" value="user [at] domain.com">
<input type="hidden" name="LoginPassword" value="mycleartextpassword">
<input type="submit" name="Authenticate" value="Login">
<input type="hidden" name="Action" value="1" >
</form>

Ben javascript ile yapabilirsiniz:

<form id="foo"> .... < /form>

<script type="text/javascript">
    function myfunc () {
        var frm = document.getElementById("foo");
        frm.submit();
    }
    window.onload = myfunc;
</script>

Eh, biz PHP ile aynı şeyi yapabilir miyim? Eğer nazik fikir ve önerileri paylaşır mısınız?

Teşekkür ederim.

0 Cevap