Hello,
The best thing to do is find out what lines of code in your script file makes up that section and comment those lines of code out. You can do this by simply putting // in front of all of the lines of code that you want commented. Alternately, you can use # which works like //. If it is a huge section of code that makes up that section, you can use /* at the first line of code and use */ at the end of the last line of code you want commented out. Here are some examples:
The use of //:
[php]<?php
// Commented lines
// Commented lines
// Commented lines
?>[/php]
The use of #:
[php]<?php
Commented lines
Commented lines
Commented lines
?>[/php]
The use of /* … /
[php]<?php
/ Commented lines
Commented lines
Commented lines
Commented lines
Commented lines
Commented lines */
?>[/php]
Let me know if I can be of more help.
Cheers!