You are not logged in.
Pages: 1
Hi everyone!
The forum is starting to perk up with content, which is great! I'd like to start posting some of my own code that I've used in production. In order to make this easier for all of us, I've enabled the syntax highlighting plugin for this forum.
How To Use:
put your php code inside a block with code=php.
e.g. [ code]$foo = "bar";[ / code] (remove any spaces inside the square brackets).
Cheers,
-
Jon
Offline
can you add more code like JS HTML SQL ?
Offline
I would like to test it ...
<script type="text/javascript"> function test() {
alert ("javascript too works ");
}
</script>
<?php
echo "Zend casts really rocks";
?>Offline
hey harikt,
so for javascript it would be:
[ code=javascript ] [ / code] (no spaces)
[code=javascript]
<script type="text/javascript"> function test() {
alert ("javascript too works ");
}
</script>
[/code]
Offline
Pages: 1