Get the name of the column 2
am 30.10.2007 23:59:16 von Jorge ReyesWow this is very very useful believe me, at least for me, but i have
two more questions, i have the next code:
while($row = sybase_fetch_assoc($result)) {
while(current($row)) {
$key = key($row);
$data = current($row);
print ("
".$key."
".$data);
next($row);
}
}
and i have a raw data like
Col1 Col2 Col3
------------------------------------------------------------ ---------------------
24/10/2007 07:30:52.000 PM 0 CENTRO
then the result is:
Col1
Oct 24 2007 7:30PM
Col3
CENTRO
so, question number 1) how can i do to preserve the original date
format (dd/mm/yyyy hh:mm:ss AM/PM
2) and most important, who can i do because when Col2 is 0 it is not
showed in the result but i want to show it
thanks for advanced