Forum Moderators: phranque
I am trying to us $_Get with special characters like: ñ from peñiscola or ø from Løkken.
But my $_Get doesn't work for this characters. When echoing $_Get.
I got back pe (from peñsicola) and l (from løkken).
My rewriterule uses these variable:
^([A-Za-z0-9\x00-\xff\ ]*)
How can I get the $_Get to get also the ø and the ñ ?
Do I need to add something to my rewriterule to get it working
Thanks a lot in advance for your reply!
greetings,
Martijn
[edited by: jdMorgan at 4:38 pm (utc) on May 1, 2008]
[edit reason] speling [/edit]
You will need to determine exactly what RewriteRule will "see" when one of those characters is present in the URL. Since the local IRL-path 'seen' by RewriteRule is pre-decoded, that's also a question most readers here don't know the answer to.
Jim
They are european characters. I believe the ø is the hexadecimal D8 and the hexadecimal F1.
I would like a rewriterule please were all underneath special characters good be outputted through $_Get or an alternative.
Thanks in advance for your reply!
See this table attached underneath: [pjb.com.au...]
HexaecimalDetails
A2¢cent sign\par
A3£Pound sign (British)\par
A4€Euro sign (in ISO-8859-15)\par
A5¥Yen sign (Japanese)\par
B0°degrees\par
BC¼fraction one-quarter\par
BCŒOE ligature, French (in ISO-8859-15)\par
BD½fraction one-half\par
BDœoe ligature, French (in ISO-8859-15)\par
BE¾fraction three-quarters\par
BEŸY diaeresis, French (in ISO-8859-15)\par
A1¡upside-down exclamation mark\par
AB«close (or open) chevron-style quotes\par
BB»open (or close) chevron-style quotes\par
BF¿upside-down question mark\par
C0Àcapital A, grave accent\par
C1Ácapital A, acute accent\par
C2Âcapital A, circumflex accent\par
C3Ãcapital A, tilde\par
C4Äcapital A, umlaut mark\par
C5Åcapital A, ring\par
C6Æcapital AE diphthong\par
C7Çcapital C, cedilla\par
C8Ècapital E, grave accent\par
C9Écapital E, acute accent\par
CAÊcapital E, circumflex accent\par
CBËcapital E, umlaut mark\par
CCÌcapital I, grave accent\par
CDÍcapital I, acute accent\par
CEÎcapital I, circumflex accent\par
CFÏcapital I, umlaut mark\par
D0Ðcapital Eth, Icelandic\par
D1Ñcapital N, tilde\par
D2Òcapital O, grave accent\par
D3Ócapital O, acute accent\par
D4Ôcapital O, circumflex accent\par
D5Õcapital O, tilde\par
D6Öcapital O, umlaut mark\par
D8Øcapital O, slash\par
D9Ùcapital U, grave accent\par
DAÚcapital U, acute accent\par
DBÛcapital U, circumflex accent\par
DCÜc capital U, umlaut mark\par
DDÝcapital Y, acute accent\par
DEÞcapital THORN, Icelandic\par
DFßsz ligature, German\par
E0àsmall a, grave accent\par
E1ásmall a, acute accent\par
E2âsmall a, circumflex accent\par
E3ãsmall a, tilde\par
E4äsmall a, umlaut mark\par
E5åsmall a, ring\par
E6æsmall ae diphthong\par
E7çsmall c, cedilla\par
E8èsmall e, grave accent\par
E9ésmall e, acute accent\par
EAêsmall e, circumflex accent\par
EBësmall e, umlaut mark\par
ECìsmall i, grave accent\par
EDísmall i, acute accent\par
EEîsmall i, circumflex accent\par
EFïsmall i, umlaut mark\par
F0ðsmall eth, Icelandic\par
F1ñsmall n, tilde\par
F2òsmall o, grave accent\par
F3ósmall o, acute accent\par
F4ôsmall o, circumflex accent\par
F5õsmall o, tilde\par
F6ösmall o, umlaut mark\par
F8øsmall o, slash\par
F9ùsmall u, grave accent\par
FAúsmall u, acute accent\par
FBûb small u, circumflex accent\par
FCüsmall u, umlaut mark\par
FDýd small y, acute accent\par
FEþsmall thorn, Icelandic\par
FFÿsmall y, umlaut mark\par
[edited by: Summit at 8:40 pm (utc) on May 1, 2008]