我想從mysql_fetch_array更新列值從mysql_fetch_array結果PHP
但最後的結果更新從MySQL表,結果一列的值僅僅是被插入一個/更新到列
我在哪裏錯了?這是我的代碼。在此先感謝
$studentname="some value";
$course="some value";
$query=mysql_query("select SABJEK,GRADE,REMARKS from table where STUDENTNAME='$studentname' && STUDENTNUMBER IS NULL") or die(mysql_error());
while($result=mysql_fetch_array($query))
{
$sabjek=$result['SABJEK'];
$grade=$result['GRADE'];
$remarks=$result['REMARKS'];
$msg="$sabjek = $grade - $remarks ";
$msg1="$studentname $course $msg";
}
mysql_query("update table2 set `msg`='$msg1' where studentname='$studentname'") or die(mysql_error());
你對$ msg字符串有什麼期待? – Asik 2014-11-02 08:29:44
@Asik不知道男人這就是爲什麼我問這裏你有想法? – 2014-11-02 08:47:46