Results 1 to 2 of 2

Thread: Change the characters on the website

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Apr 2009
    Posts
    364

    Change the characters on the website

    Hi Gusy,
    is there any possible to change the characters on the website (online/some single site.php) that I could use some php script?
    For exapmle my website shows some È letters.

    I would like to convert that (replace the È for C )

    Example:
    if È then replace for C

  2. #2
    WiggleWiggle dclamp's Avatar
    Join Date
    Aug 2006
    Posts
    3,527

    Re: Change the characters on the website

    You can use str_replace() for that.

    PHP Code:
    $string "Èharlie is my friend. hehaheha";

    $newstring str_replace("È""C"$string);

    echo 
    $newstring// "Charlie is my friend. hehaheha" 

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width