View Single Post
Old 06-17-2009, 08:12 PM   #7 (permalink)
adamdecaf
The Addict
 
Join Date: May 2009
Posts: 287
Thanks: 5
adamdecaf is on a distinguished road
Default

Well, we can try.

php Code:
<?php
// highlight=php
function hello(){
    print "Hello World!";
}
?>
<p>
   <?php
     hello();
   ?>
</p>

PHP Code:
<?php
// php
function hello(){
    print 
"Hello World!";
}
?>
<p>
   <?php
     hello
();
   
?>
</p>
Code:
<?php
// code
function hello(){
    print "Hello World!";
}
?>
<p>
   <?php
     hello();
   ?>
</p>
__________________
My Site
adamdecaf is offline  
Reply With Quote