Possible Duplicate:
How do I format my code blocks?
When adding a code block of several lines, must I indent EACH LINE of the code block by 4 spaces, or just the first line? In the following block, each line of the code is indented 4 lines.
<?php
echo "each line is here indented four spaces" ;
setCookie(\'testtest\', '.$book['code'].', time()+ 172800);
<script type="text/javascript">alert("does this work");</script>
In my earlier posts, I was using the "code sample" {} button on the toolbar above this text entry box. That didn't work well at all... So here comes the 2nd code block, same code but only the first line of the code block indented the four space. Just seeing if the format is different.
<?php
echo "each line is here indented four spaces" ; setCookie(\'testtest\', '.$book['code'].', time()+ 172800);
alert("does this work");And this is the end of this post.