> How would I remove a # from a string? > I want #2 to be 2.
$str = "#2";
$str = str_replace("#","",$str);
--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
> How would I remove a # from a string? > I want #2 to be 2.
$str = "#2";
$str = str_replace("#","",$str);
--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php