Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re^4: Removing Foreign Characters

by existem (Sexton)
on Jan 27, 2005 at 18:05 UTC ( [id://425663]=note: print w/replies, xml ) Need Help??


in reply to Re^3: Removing Foreign Characters
in thread Removing Foreign Characters

thanks for the help guys, I think i've kind of hacked this one ;) here's what i've done.

This is actually PHP, I did it on the front end, rather than at the point of loading into the database.

$trans = array( "À" => "À", "à" => "à", "Á" => "Á", "á" => "á", "Ã" => "Ã", "Ì" => "Ì", "ì" => "ì", "Í" => "Í", "í" => "í", "Î" => "Î", "î" => "î", "Ò" => "Ò", "ò" => "ò", "Ó" => "Ó", "ó" => "ó", "Ô" => "Ô", "ô" => "ô", "é" => "é", "è" => "è", "È" => "È", "Ù" => "Ù", "ù" => "ù", "Ú" => "Ú", "ú" => "ú", "Û" => "Û", "û" => "û", "¢" => "", "©" => "" ); $name = strtr($row["name"], $trans2);

I'm off to the pub now to think about it a bit more ;)

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://425663]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (3)
As of 2024-04-26 04:37 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found