hi every body
please help me up this simple question ok
if i create one form and use GET motho and then how can i get response ip address from where i send
some like it
http://localhost/php/uploadtemp/test/input.php?name=a&age=a&response= http://localhost/php/uploadtemp/test/input.php?name=a&age=a&response=a
my coding
<form action="input.php" method="GET">
phone:<input type="text" name="name"/>
<p>
message:<input type="text" name="age"/>
<p>
response_url:<input type="text" name="response"/>
<p>
<input type="submit">
</form>
<?php
$name=$GET['name'];
$age =$GET['age'];
$a =$_GET['response'];
echo($name);
echo("<p>:");
echo($age);
echo("<p>:");
?>
best regard
roger