Dumb question: what is the eregi_replace command for removing all the non-numeric characters in a given string?
I think it is
<?php
$string="a1b2c3d4"; echo eregi_replace("[0-9]", "", $string);
?>
that should output just the numerics.
Mark.
Yep, that's it. Thanks!