I'm trying to achieve the output where the remote ip is 1.2.3.4(for example):
1.2.3.4 !--IPADDR=1.2.3.4-->
I've tried just about everything...here is one variation:
<?php
echo "<";
echo "!";
echo "--IPADDR=";
echo $_SERVER['REMOTE_ADDR'];
echo
"-->";
?>
No matter what I try the ! screws it up.
If I do:
<?php
echo "!"';
?>
It seems to work, but as soon as I try
<?php
echo "<";
echo "!"';
?>
Nothing displays...any help is appreciated.
Thaks.