试图从表

时间:2015-05-23 19:46:41

标签: php mysql

我想从我桌子上的一行中获取一个值,但我只得到一个值

($ now),$ next没有出现,是的,它不是空的。

$account = $_POST['name']; 
$get_next = mysqli_query($conn,"SELECT next_vote FROM account.account WHERE login = '$account'");
$next = $get_next->fetch_object();
$now = date("d/m/Y", strtotime('today'));
echo $now;
echo $next;

enter image description here

1 个答案:

答案 0 :(得分:2)

  

您的代码容易受到SQL注入的攻击!

您无法使用echo输出对象。只需使用:

var_dump($next);

如果你想回应下一次投票:

echo $next->next_vote;

或者:

$next = $get_next->fetch_object()->next_vote;