我的代码是:
try
{
$conn = new PDO("mysql:host=$servername;dbname=$dbname", $user, $pass);
$conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
$stmt = $conn->prepare("select userid,fname,type from native_users where email=:email and pass=:pass");
$stmt->bindParam(':email', $username);
$stmt->bindParam(':pass', $password);
$stmt->execute();
if($stmt->rowCount() > 0)
{
$_SESSION['uid']=$stmt->fetchColumn(0); //working
$_SESSION['fname']=$stmt->fetchColumn(1); //not working
$utype=$stmt->fetchColumn(3); // not working
if($utype == "admin")
{
// send to admin page
}
else
{
//send to user page
}
}
else
{
echo"Incorrect data.";
}
}
catch(PDOException $e)
{
echo "Error: " . $e->getMessage();
}
$conn = null;
我是PHP的新手,我基本上都是Java。
我读了here:
如果使用,则无法从同一行返回另一列 PDOStatement :: fetchColumn()来检索数据。
在java中,有ResultSet#getString()
功能可以执行此操作。
PHP的等价物是什么?
答案 0 :(得分:1)
您可以使用:
$result = $sth->fetch();
$result[0] will give userid
$result[1] will give fname
$result[2] will give type
请阅读this
fetchColumn(),返回结果下一行的单个列 集。
请阅读this了解详情。
答案 1 :(得分:1)
使用PDO::fetchAll()
:
$rows = $stmt->fetchAll();
foreach ($rows as $v) {
echo $v['userid'] . " " . $v['fname'] . " " . $v['type'] ;
}
}
或只是print_r($rows)
您会注意到它是一个关联数组。