作者TsukinoUsagi (月野兔)
看板PHP
标题Re: [请益] php & mysql一问
时间Sun Oct 2 17:42:53 2005
※ 引述《kc655039 (NNN  )》之铭言:
: $str="select * from customers where cid='$_POST\[\'old_name\'\]';";
: 如果这样写的话会有错误讯息:
: Warning: mysql_fetch_row(): supplied argument is not a valid MySQL result resource in C:\Program Files\Apache Group\Apache2\htdocs\Mysql.php on line 20
: 但是如果改成
: $str="select * from customers where cid='$old_name';";
: 就没问题,想问一下要怎麽样才能用上面的那个方法呢??
: 有经验的人麻烦指导一下,多谢
$str="select * from customers where cid='".$_POST['old_name']."';";
推文放不下.
--
响: 「嗯, 加油喔, 那麽....早点睡, 掰掰, 晚安....
要是明天也能见面那该有多好. 」
-- 想君~Memories Off~
--
※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 211.74.73.26
1F:推 kc655039:可以请问一下这是什麽样的语法运用吗??分析给我听看看 10/02 17:45
2F:→ kc655039:Thanks so very much 10/02 17:46
4F:推 kc655039:....突然知道了,那为什麽下面的那种用法就不用那样呢 10/02 20:05
5F:推 TsukinoUsagi:我也不是道, 这种写法我也是第一次看到. 10/02 22:02