單入口註冊模組組合sql語句的一個小問題

來源:互聯網
上載者:User
請教大家一個問題,用單入口方式寫的一個註冊類

$uname=$_POST['uname'];
$pwd=md5($_POST['pwd']);
//組合sql
$sql="insert into user(username,password) values($uname,$pwd)";
M()->exec($sql);

$sql這句插入資料有問題,$uname和$pwd都取得值了.我書寫的哪塊錯誤了,雙引號不是直接能解析變數的嗎?
//我改成這種直接插入沒問題$sql="insert into user(username,password) values('xiaozhang','34345')";
$sql 我改成 $sql="insert into user(username,password) values(".$uname.",".$pwd.")"; 也不行,哪裡出錯了,應該怎麼寫.


回複討論(解決方案)

我的調試方法, 先去資料庫寫一條插入語句,執行成功後,按照你寫的語句去拼湊php這邊的運算式就行了

$sql="insert into user(username,password) values('$uname','$pwd')";
字串是需要用引號括起的,否則會被誤解

$sql="insert into user(username,password) values(‘".$uname."’,‘".$pwd."’)"; 出錯的時候可以把sql輸出看看是什麼

$sql="insert into user(username,password) values('$uname','$pwd')";
字串是需要用引號括起的,否則會被誤解



$uname 不是變數嗎,為啥用單引號括起來.php中單引號不是不解析變數的嗎?


$sql="insert into user(username,password) values('$uname','$pwd')";
字串是需要用引號括起的,否則會被誤解



$uname 不是變數嗎,為啥用單引號括起來.php中單引號不是不解析變數的嗎?



如果你uname定義為varchar,不家引號,sql會報錯的。



$sql="insert into user(username,password) values('$uname','$pwd')";
字串是需要用引號括起的,否則會被誤解



$uname 不是變數嗎,為啥用單引號括起來.php中單引號不是不解析變數的嗎?



如果你uname定義為varchar,不家引號,sql會報錯的。



我資料庫定義的char(20)類型的
  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.