Only variables should be passed by reference in… on line 13 Fail

前端 未结 2 1413
陌清茗
陌清茗 2020-12-12 03:48

I\'m practicing building a PHP registration form script for a website. I have done this code, but when I click the submit button I get the notice: Only variables should be p

2条回答
  •  离开以前
    2020-12-12 04:40

    $result->bindParam(':id', $id, PDO::PARAM_INT);

    if string, you need write:
    $stmt->bindParam(':username', $_POST['username'], PDO::PARAM_STR);

提交回复
热议问题