2 sayfalara $ _POST

1 Cevap php

I have a page with 2 frames. In the top frame is a form called invoice.php. In it you type in an invoice number and then post it. I am wanting this post to be sent to 2 pages that will open in both the top and bottom frames. The top page is called invoicelab.php and the bottom is called invoice2.php. The information that I am posting is called workorder. The form page looks like this - --- Enter workorder number

Ne invoice2.php ve invoicelab.php hem de üzerine bu bilgi aktarmak için en iyi yoldur. Teşekkürler

1 Cevap

Yerine düğme kullanımını göndermek basit düğme formun hedef değeri, değiştirmek için javascript kullanmak ve biraz bu gibi bir işlevi kullanabilirsiniz:

function submitForms()
{
    myForm.target = "frame1";
    myForm.submit();
    myForm.target = "frame2";
    myForm.submit();
}