Code highlighter
just testing a new code hightlighter, sounds good
text text hello
<?php
function test($string)
{
echo “Hello World!”.$string;
}
// hello world
?>
text text hellovar string=’string’;
function test(string)
{
alert(“Hello World! “ + string);
// hello world
}