mysql某元素为空_PHP - MySQL,认为$ result在某些时刻是空的,当时应该有元素
我有一個帶有3個下拉列表的PHP頁面。每次使用'onchange'事件時,javascript文檔都會將所選值傳遞給一個php函數,在那里我可以將它們傳送到我的mysql數據庫并從中得到結果。這個東西是完美的,但是當我應用我的邏輯來定義我應該調用哪個函數時并不適用
我的php頁面包含有效的邏輯(參見代碼框),并且不足之處在于有兩個功能。該功能確實有效,但問題在于此。 if-else結構中有可能在兩個不同的時刻調用函數。 if-else構造中的第一次這兩個調用都是成功的,結果就是它應該是的,第二次看起來$ result參數是空的?
$result = mysql_query($sql) or die("Query failed with error: ".mysql_error());
$aantal = mysql_num_rows($result);
if($amount == 0){
echo "
This combination does not exist
";}
else {
// lists are empty
if($soort == 'Empty' && $land == 'Empty' && $jaar == 'Empty'){
}
else {
if ($aantal > 2){
maketable($aantal, $result); // -> **succesfull call**
}
else if($aantal == 1){
makedetails($result); // -> **succesfull call**
}
else {
$first = mysql_result($result, 0);
$second = mysql_result($result, 1);
if (($second - $first) == 1){
makedetails($result); // -> **does not work**
}
else {
maketable($aantal, $result); // -> **does not work**
}
}
}
}
function maketable($aantal, $result) { … }
function makedetails($result){ … }問候
總結
以上是生活随笔為你收集整理的mysql某元素为空_PHP - MySQL,认为$ result在某些时刻是空的,当时应该有元素的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: mysql 存储过程 模糊查询_Mysq
- 下一篇: 双眼皮贴贴多了眼皮松弛怎么办