我試圖從MySQL數據庫分析一些數據,我有一列調用is_approved
和值是0
或1
(0否,1代表是)如果值被設置爲0,如何排除數據?
我只想經批准進行呼應一切
我該怎麼做?
<?php
// Connect to MySQL
$link = mysql_connect('localhost', 'username', 'password');
if (!$link) {
die('Could not connect: ' . mysql_error());
}
// Select the data base
$db = mysql_select_db('DATABASE', $link);
if (!$db) {
die ('Error selecting database \'DATABASE\' : ' . mysql_error());
}
// Fetch the data
$query = "
SELECT *
FROM prayer
ORDER BY created_at DESC";
$result = mysql_query($query);
// All good?
if (!$result) {
// Nope
$message = 'Invalid query: ' . mysql_error() . "\n";
$message .= 'Whole query: ' . $query;
die($message);
}
// Print out rows
while ($row = mysql_fetch_assoc($result)) {
//echo json_encode($row);
echo 'Name: '.$row['first_name'] . ' ' . $row['last_name'] . ' <br>Gypsy Name: ' .$row['gypsy_name'].'<br>Veetsa: ' .$row['veetsa'].'<br> Location: ' .$row['location'].'<br>' .$row['created_at'].'<br>' .$row['content'] . "<hr>";
}
// Close the connection
mysql_close($link);
?>
的計劃是吐出JSON,所以我可以用它在其他服務器上
其中is_approved = 1? – Steve 2014-11-06 00:42:18
將'WHERE is_approved'添加到查詢中,如果它是一個整數 – 2014-11-06 00:43:06