|
PHP Wrappers
For a PHP refererence manual see
http://www.php.net/manual/en
There are 4 different ways to wrap your PHP code up and
mix it with your html:
- <script language="php">
PHP code
</script>
- <?
PHP code
?>
or just use
<?echo $REMOTE_ADDR?>
- <?php
PHP code
?>
- <%
PHP code
%>
or just use
<%echo $REMOTE_ADDR%>
|
|