php-general | 2003022
Date: 02/28/03
- Next message: Sam A. Funk: "Re: [PHP] Is it an apache or a php-problem?"
- Previous message: Justin French: "Re: [PHP] How can I detetct if session cookies are enabled?"
- In reply to: Hugh Danaher: "Re: [PHP] strip comma from $value"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
on 01/03/03 4:41 AM, Hugh Danaher (hdanaher <email protected>) wrote:
> try ereg_replace(",","",$value);
no need for ereg here...
str_replace(',','',$value);
:)
justin
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
- Next message: Sam A. Funk: "Re: [PHP] Is it an apache or a php-problem?"
- Previous message: Justin French: "Re: [PHP] How can I detetct if session cookies are enabled?"
- In reply to: Hugh Danaher: "Re: [PHP] strip comma from $value"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

