decoding &#;
Is there a function in php that will take a string of numbers like
"0798890" and give me the equivalent
string in numbers/letters ?
Re: decoding &#;
Kentor wrote:
> Is there a function in php that will take a string of numbers like
> "0798890" and give me the equivalent
> string in numbers/letters ?
Depending on the version of PHP you are using, you may have
htmlspecialchars_decode()
http://www.php.net/manual/en/function.htmlspecialchars-decod e.php
--
//Aho
Re: decoding &#;
On Apr 8, 1:46 am, "J.O. Aho" <u... [at] example.net> wrote:
> Kentor wrote:
> > Is there a function in php that will take a string of numbers like
> > "0798890" and give me the equivalent
> > string in numbers/letters ?
>
> Depending on the version of PHP you are using, you may have
> htmlspecialchars_decode()
>
> http://www.php.net/manual/en/function.htmlspecialchars-decod e.php
>
> --
>
> //Aho
Thanks thats what I needed :)