Ben aşağıdaki gibi basit bir mysql sorgu var:
SELECT DISTINCT(node.nid) AS nid,
node_counter.totalcount AS node_counter_totalcount,
node.title AS node_title,
node_data_field_dep.field_dep_value AS node_data_field_dep_field_dep_value,
node.type AS node_type,
node.vid AS node_vid,
node_data_field_type.field_type_value AS node_data_field_type_field_type_value
FROM node node
LEFT JOIN node_counter node_counter ON node.nid = node_counter.nid
LEFT JOIN content_field_dep node_data_field_dep ON node.vid = node_data_field_dep.vid
LEFT JOIN content_type_project node_data_field_type ON node.vid = node_data_field_type.vid
WHERE (node.type in ('project')) AND (node.status <> 0)
GROUP BY nid
ORDER BY node_counter_totalcount DESC
bu yüzden şu ifadeleri çalıştırmak:
$result = mysql_query($query);
$ sorgu Yukarıdaki SQL sorgusu nerede.
Genellikle, ben verilere erişmek için mysql_fetch_array ($ result) veya mysql_fetch_row ($ result) kullanabilirsiniz, ancak bu şimdi çalışıyor ve bunun yerine bazı hata vermiyor. Bunları kullanmak için başka bir yolu var mı. Ben biçimlendirilmiş bir şekilde seçilen verileri yazdırmak istiyorum. (Say, bir tablo)