PDA

View Full Version : PHP code help


kobra103
12-02-2004, 06:57 PM
Okay people i have a fairly simple questions for the php proficient.

My question is what are the tags or coding to add a note in PHP files- a note similar to htmls <!-- --> tags, so i can note changes i made to some phpbb files that i mod..

Thanks, kobra

optik
12-02-2004, 08:30 PM
i just found out:

// note

kobra103
12-02-2004, 09:56 PM
yeah i was just about to post i found this.. /* note */ but i think its for multiple lines im not sure but i guess both work thanks optik

optik
12-02-2004, 10:22 PM
np

Zykaz
12-02-2004, 10:52 PM
yeah i was just about to post i found this.. /* note */ but i think its for multiple lines im not sure but i guess both work thanks optik

Just to clarify a bit, yes, /* and */ are for multiple lines, // only works for everything after it until the end of the line.

kobra103
12-03-2004, 12:16 AM
Thanks Zykaz