View previous topic :: View next topic
Author
Message
Peter v. R. Guest
Posted: Mon Jan 25, 1999 10:27 am Post subject: Getting the Hostname and put it into a <input&g
Can anybody help me to get de hostname with PHP, and then put it into a <input> type?
For example, you have an ISP who called worldonline (www.worldonline.nl) Then you want to get this into an input type field:
<input type="text" value="@worldonline.nl">
Thanx.
Back to top
Boaz Yahav Guest
Posted: Mon Jan 25, 1999 11:00 am Post subject: RE: Getting the Hostname and put it into a
Hi
try this :
$host=getenv("HTTP_HOST");
echo"<INPUT TYPE=\"TEXT\" NAME=\"host\" VALUE=\"$host\">";
?>
You can see all of the environment variables by creating a file with only the next code in it and looking at it via a browser :
phpinfo();
?>
I hope this helps
Back to top
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
Powered by phpBB © 2001, 2005 phpBB Group
PHP Forum :: MySQL Forum :: Java Script Forum