06-17-2009, 08:12 PM
|
#7 (permalink)
|
|
The Addict
Join Date: May 2009
Posts: 287
Thanks: 5
|
Well, we can try.
php Code:
<?php// highlight=phpfunction 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>
|
|
|
|