Quote:
|
Originally Posted by egcreative
I am trying to display information from a database. I have a field with a big log numbers ex:121948908420. I need to know how to display only the first 8 numbers ex:12194890.....
Please help
|
$somevar = substr($somevar,0,7);
That should do it for ya...
Rob