Re: [PHP] accidently inserting into web database blank records.

2003-03-14 Thread Leif K-Brooks
The string is in double quotes, ont single quotes. The single quotes are simply characters in the double-quoted string. I believe the register_globals explanation is correct. Brent Baisley wrote: I'm pretty sure your problem is the single quotes around your variables. Single quotes and doubl

Re: [PHP] accidently inserting into web database blank records.

2003-03-14 Thread Brent Baisley
I'm pretty sure your problem is the single quotes around your variables. Single quotes and double quotes have very different meanings. Single quotes tell PHP not to look for anything inside the quotes, whereas PHP will always parse double quotes to see if there is anything it needs to process.

Re: [PHP] accidently inserting into web database blank records.

2003-03-14 Thread Chris Hewitt
Mahmut KARADEMIR wrote: Hi All; I am trying to add a new record web database using Mysql&PHP. But after at every add process a new blank record is added to mysql table. The entered text is not considered with codes. What is my trouble in this html or php code? Could anyone has any idea? Thanks. *