$getData = mysql_query("SELECT files.*,clients.* FROM files INNER JOIN clients ON files.clients_id = clients.id ORDER BY files.description ASC");
while($getDataArray = mysql_fetch_array($getData)) {
echo("<a href=\"$PHP_SELF?go=delete&id=$getDataArray[id]\">DELETE</a> - " . $getDataArray[description] . " <i>[" . $getDataArray[username] . "]</i>" . "<br><br>");
}
$getDataArray[id] returns the id of the wrong table. How can I specify which table ID I want?
Thanks!