Nasıl php form kullanmadan bir url parametre göndermek?

0 Cevap

dear all, I need to send parameters to a URL without using form in php and get value from that page.We can easily send parameters using form like this:

<html>
    <form action="http://..../abc.php" method="get">
    <input name="id" type="text" />
    <input name="name" type="text"/>
    <input  type="submit" value="press" />
    </form>
</html>

Ama zaten bu gibi bir değere sahip

     <?php 
       $id="123";
       $name="blahblah";
      ?>

Now i need to send values to http://..../abc.php without using form.when the 2 value send to abc.php link then it's show a value OK.Now i have to collect the "OK" msg from abc.php and print on my current page. i need to auto execute the code.when user enter into the page those value automatically send to a the url.So i can't use form or href. because form and href need extra one click.

Onların her türlü kalp kim bana bu sorunu çözmek için yardımcı olabilir mi?

0 Cevap