OK、いくつかの変数で構成されたphpリンクがあります
<a href=\year.php? manufacturer='.$manufacturer.'&fuel_type='.$fuel_type.'&model_type='.$model_type.'>'.$model_type.'</a>
多くのページネーションがあるため、コード全体が非常に長いので、基本的なクエリとループ部分だけを含めます。
$query1 = "SELECT Distinct model_type from $tableName where manufacturer='$manufacturer' AND fuel='$fuel_type' LIMIT $start, $limit";
$result = mysql_query($query1);
そして、結果を取得して表示する下部。
$count = 0;
$max = 2;
while($row = mysql_fetch_array($result))
{
$model_type = $row['model_type'];
$count++;
echo '<td class="manu"><div align="center">'.'<a href=\year.php? manufacturer='.$manufacturer.'&fuel_type='.$fuel_type.'&model_type='.$model_type.'>'.$model_type.'</a>'.'</div></td>';
if($count >= $max){
//reset counter
$count = 0;
//end and restart
echo '</tr><tr>';
}
}
これは、データベースからモードタイプ変数を取得して 1 シリーズとして表示する場合を除いて正常に動作しますが、このリンクで渡された場合は 1 のみを取得し、シリーズを取得しません。
ありがとう