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.