我想在一個單獨的文件functions.php
來實現這兩種功能,並調用它在index.php
爲什麼這個php函數會導致嚴重錯誤?
function is_field($column, $table, $requested) {
$is_field_query = "SELECT ".$column." FROM ".$table." WHERE ".$column."='".$requested."'";
$is_field_result = $mysqli->query($is_field_query);
$is_true = $is_field_result->num_rows;
$is_field_result->close();
return $is_true;
}
function get_content($column, $table, $requested) {
$get_content_query = "SELECT ".$column." FROM ".$table." WHERE ".$column."='".$requested."'";
$get_content_result = $mysqli->query($get_content_query);
$get_content_row = $get_content_result->fetch_array(MYSQLI_ASSOC);
$get_content_content = $get_content_row["content"];
$get_content_result->close();
return $content;
}
我一遍遍嘗試一遍,我不知道爲什麼它不會工作。第一個返回1爲有效或0爲無效。第二個檢索MySQL表中特定單元格的內容。任何幫助將非常感激。
什麼是你得到的錯誤訊息? 「錯誤500」不夠詳細。 – Dai 2013-03-12 03:37:38
打開錯誤報告http://stackoverflow.com/tags/php/info – Tchoupi 2013-03-12 03:37:40
'從「選擇其中$欄=‘$要求’$表$欄」'你不需要翻來進出引號像如果你的字符串是雙引號的。 – 2013-03-12 03:41:09