php - Append data to GET parameter -


i need send data parameter on different host fail find suitable function within php occasion. that's question.

for example send value information parameter:

http://example.com/obtainer.php?information= 

thanks :)

query strings (_get) parameter constructed like;

www.example.com/index.php?param1=value&param2=value 

if you're sending value information parameter via form, following;

<form action="" method="get">  <input type="text" name="information" value="" />  <input type="submit" value="send" /> </form> 

however, if you're sending data via link, write manually, so;

<a href="index.php?information=hello">link</a> 

remember, when putting string query string, ensure use urlencode


Comments

Popular posts from this blog

java - Run a .jar on Heroku -

java - Jtable duplicate Rows -

validation - How to pass paramaters like unix into windows batch file -