Hi and thanks in advance !!
I know its easy but I'm new at this so pleaseee help !
Thanks
Tony
ereg
and read the manual it is for people who are new at this!!!
cya Rob
For substitution use ereg()... Are you thinking of \s for underscore? You can use CHR() function too.
Michael (Ps: Don't be so mean!)
str_replace is faster than ereg... but you can use both
$str = str_replace("/", "_", $str);
or
$str = ereg_replace("/", "_", $str);
Hope that will do...
Andreas