查看: 990|回复: 1
|
询问php+mysql中单引号和双引号的区别?
[复制链接]
|
|
这两句有什么不同? 差别在哪里?
$sql="select * from example1 where name=$name";
 
$sql="select * from example1 where name='$name'";
同样在其他insert,delete,update的php连接mysql中单引号和双引号有问题吗?
magic_quotes_gpc=on 是什么意思?
display_errors=off是什么意思?
有相互关系吗?
请教高手有关php基础知识 |
|
|
|
|
|
|
|
发表于 9-1-2007 01:57 AM
|
显示全部楼层
当你处理string在SQL里时,必须用单引号。
magic_quotes_gpc=on - 自动处理 special characters, 有如用addslashes()在每个variables
display_errors=off - 关闭error显示于browser |
|
|
|
|
|
|
| |
本周最热论坛帖子
|