Okay.
To show a the persons IP adress you use this code...
But I would like it to come out as Veranda + Bold.<? echo "IP: $REMOTE_ADDR"; ?>
How do I Do what with out damaging the script?
Okay.
To show a the persons IP adress you use this code...
But I would like it to come out as Veranda + Bold.<? echo "IP: $REMOTE_ADDR"; ?>
How do I Do what with out damaging the script?
<html>
<head>
</head>
<body>
<font size="1" face="Verdana">
<? echo "IP: $REMOTE_ADDR"; ?></font>
</body>
</html>
there you go
REMOVED
Edited by jesus (Forum Super Moderator): Please do not have text in your signature which is over size 4.
thats one of the plus's of php you can just jamm it in with regular html
athogh your script for the ip is wrong
would be what you want. Unless you are asigning that to the varible $REMOTE_ADDR alreadyPHP Code:<?php echo ($_SERVER['REMOTE_ADDR']);?>
aka
ps. For blold as wellPHP Code:$REMOTE_ADDR = $_SERVER['REMOTE_ADDR'];
orHTML Code:<b><font size="1" face="Verdana"><? echo "IP: $REMOTE_ADDR"; ?></font></b>
HTML Code:<b><font size="1" face="Verdana"><?php echo ($_SERVER['REMOTE_ADDR']);?></font></b>
Last edited by Mentor; 21-03-2005 at 09:15 PM.
Okay. So for there browser to show its...
<html>
<head>
</head>
<body>
<font size="1" face="Verdana">
<?php echo $_SERVER['HTTP_USER_AGENT']; ?></font>
</body>
</html>
if its a php page. the php will have be phased to show whoevers veiwing the pages ip adressOriginally Posted by Luckyrare™
Okay. So for there browser to show its...
so for exsmaple it may look like
<html>
<head>
</head>
<body>
<font size="1" face="Verdana">00.00.000.00 </font>
</body>
</html>
but what you said is what you may wnat to put on your actal page in the programing veiw.
Iam going to put the script in a iframe. That should work?
Yeah
Do you no how to password protect a page for viewing?
make sure u name the page
pagename.php or it wont work make sure it has .php on the end instead of .htm on .html etc etc
REMOVED
Edited by jesus (Forum Super Moderator): Please do not have text in your signature which is over size 4.
Want to hide these adverts? Register an account for free!