这是我有史以来首次提出的日本移民协会条款,我的确遇到了一个问题。 我想重复我的物品所需的一切信息,但我不理解如何重复一个项目的标注,现在我收到一份清单,重复项目,但如果分配给一个项目的标子不止一个,则有不同的标子。 任何想法? 这样做的更好方法也受到高度赞赏。
$query = "SELECT categories.id, categories.category, spots.spot_name, spots.category_id, spots.description, spots.slug, districts.id, districts.district, tags.spot_id, tags.tag ".
"FROM categories, spots, districts, tags ".
"WHERE categories.id = spots.category_id AND districts.id = spots.district_id AND tags.spot_id = spots.id";
$result = mysql_query($query);
if (!$result) {
die( Invalid query: . mysql_error());
}
while ($row = @mysql_fetch_array($result)){
echo <tr><td style="background:#000; color:#ccc;" class="tooltip" title=" .$row["description"]. Tags: .$row["tag"]. "><a style="color:#fff;" href="/ .$row["slug"]. "> .$row["spot_name"]. </a></td>
<td> .$row["category"]. </td>
<td> .$row["district"]. </td>
<td>****</td>
</tr>
;
}
感谢100万,
Anders