i'm actualy not a guy and i havn't been sleeping.
this teacher is just not able t explain anything well.
i'm one of the only ppl out here that actualy pays attention to class.
lil question
Moderator: General Moderators
Re: lil question
Don't blame the teatcher, if you're interested in learning there're tons of tutorials which will explain the basics for you. I bet 99.9% of the PHP programmers here are self thought.
- aceconcepts
- DevNet Resident
- Posts: 1424
- Joined: Mon Feb 06, 2006 11:26 am
- Location: London
Re: lil question
I would agree with Papa's percentage. However, one of the biggest problems remote helpers are faced with is overlooked simplicities that could screw up an entire script. In most cases, when testing resources are exhausted, the solution lies in a spelling mistake or something equally trivial.
Re: lil question
alright
thanks alot for the helps
:D
-
noondaysun
- Forum Newbie
- Posts: 4
- Joined: Tue Oct 28, 2008 9:04 am
Re: lil question
I don't, personally, like the insert into x (col1, col2...) values (val1, val2...) sql syntax, rather I find it easier to use
Makes it easier not to mix values in your columns and values segments. Just remember to escape values.
as for the php mysql_query() would probably be the easiest
Code: Select all
insert into x set col1=val1, col2=val2as for the php mysql_query() would probably be the easiest