The Specials Board theme includes .seestyle files for all programming languages that Coda supports out of the box. Not just Ruby, PHP, XHTML, CSS and the others referenced in the demo screencaps, but ASP, Python, Smarty, Action Script, Java and all the others.
Here is the code to display your ip address.
$ip=@$REMOTE_ADDR;
echo “<b>IP Address= $ip</b>”;
The above code will display this IP address= 39.209.132.215
IP address if the register_global is off
If at php.ini if register_global is set to Off then we have to change the script a bit to get the address. Here it is
$ip=$_SERVER[‘REMOTE_ADDR’];
Note that changing register global setting my be a security problem particularly in live hosting environment so consult your host before in this aspects also.

