View Single Post
Old 06-13-2006, 11:21 PM  
darksoul
Confirmed User
 
darksoul's Avatar
 
Join Date: Apr 2002
Location: /root/
Posts: 4,997
find
Code:
while($row = mysql_fetch_row($result)){
and add
Code:
 $row[1] = substr($row[1],0,10);
so your code will look like:
Code:
while($row = mysql_fetch_row($result)){
$row[1] = substr($row[1],0,10);
.
.
.
__________________
1337 5y54|)m1n: 157717888
BM-2cUBw4B2fgiYAfjkE7JvWaJMiUXD96n9tN
Cambooth
darksoul is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote