as of the moment i have this for the date routine
[code:1]
$lastview = explode(" ", $row->lastview);
$explodedatestring = explode("-", $lastview[0]);
$year = $explodedatestring[0];
$day = $explodedatestring[1];
$month = $explodedatestring[2];
$time = $lastview[1];
[/code:1]
and then when it displays
[code:1]
$return .= "<tr><td>".$cb_Name." ".$genderPic."</a><br>".$profileviewers_DATEfield;
$return=str_replace ('%m%',$month,$return);
$return=str_replace ('%d%',$day,$return);
$return=str_replace ('%y%',$year,$return);
$return=str_replace ('%t%',$time,$return);
$return .= $gender;
[/code:1]
now ive gotta dig a bit to find what command to offset the time.
ive also reduced the filesize from 16k to 12k, and about to drop it to 6-7k when i 'relogic' it a bit
SoM