我已經試過這100種,並找遍了整個網:PHP語法麻煩
<?php
$dbname = 'pdartist2';
$table = 'subcategories';
// query
$result = mysql_query('SELECT SubHeaderText FROM subcategories where SCID = $SCID');
while($row = mysql_fetch_row($result))
{
foreach($row as $cell)
"$cell";
}
mysql_free_result($result);
?>
我試圖傳遞參數$ SCID這是一個數字,但我不能得到的語法。如果我在其中放入一個數字的話。但我需要能夠傳遞一個變量。
使用'「'而不是''' – prodigitalson
只是一個觀察,但什麼是'‘$細胞’;?'線做輸出的電池,你可以把它放到'回聲$細胞;'因爲它會工作更好。 – Nexerus
@Nexerus ......,你知道,解析... – DaveRandom