Learn How To Put Comments In Your PHP Code Step By Step Tutorial Guide


Learn How To Put Comments In Your PHP Code Step By Step Tutorial Guide
  Forums Index
      » PHP Forums
        » » Learn How To Put Comments In Your PHP Code Step By Step Tutorial Guide



Learn How To Put Comments In Your PHP Code Step By Step Tutorial Guide
Post Description:
Post Tags: learn, how, to, put, comments, in, your, php, code, step, by, step, tutorial, guide, free php support, php scripts, php questions, php answers, programming, codes, scripts
This Post Has Been Viewed 382 Times Since Tue Jan 23, 2007 4:30 pm Posted By hostman with 1 replies
Learn How To Put Comments In Your PHP Code Step By Step Tutorial Guide
I had this question and could not remember how to put comments in my php code, so i ask the folks at www.webune.com for their support. you see i have several website i host with them, i like their service and profesional support. I recommend them to all my customers.

So the guys at webune showed me how to put comments in php and so that i wont' forget how to do it, i am posting this simple step by step tutorial guide so you can learn how to do it just in case you want to know how to ..

there are two way of putting comments in php. lets say i want to put the follwowing comments in my php code:

"I start my comments here"

i have two options:

option 1: i can use the number (pound) sign: # like this:
     Code:
# I start my comments here

or
option 2: I can use the /* and */ to start and end a comment. so anything in between them will be commented out. so this is how i would use option 2.
     Code:
/* I start my comments here */


tha'ts it, very simple huh.

Thanks again to the people at webune web hosting for their excellent service and support.

Leave Your Comments
* Your Name

  * Your Email Address (Will Not Be Published)

* Your Comments


Add Picture To Comments
Yes No             upload
Receive Replies on my Comments
(An email will be sent to you when someone replies to your comments)

     




Comments and replies About Learn How To Put Comments In Your PHP Code Step By Step Tutorial Guide






:: 1 :: #216 - Reply By pablo On Tue Feb 06, 2007 4:28 pm
there are many different way to put comments or notes in you php another way i know of, all you have to put is two slash. for example: // my comments