Forum Moderators: coopster
$show = mysql_query("SHOW FIELDS FROM uploadme");
$feildsnum = 0;
while($do = mysql_fetch_array($show)) {
$feild[$do['Field']] = $do['Field'];
$feildsnum++;
}$numSQL = 1;
$sqlKey = null;
foreach ($feild as $key ) {
if ($numSQL == $feildsnum) {
$sqlKey .= $key;
} else {
$sqlKey .= $key.",";
}
$numSQL++;
}
all want to do is to erase the primary key from the query..
Need help guys tnx ^^..