Tagged Questions

3
votes
1answer
76 views

Encoding Issue Title Tag

I've got a little problem with the tag in combination with PHP. My code is: $title = '....'; echo '<title>'.htmlspecialchars($title).'</title>'; When i use "Niederländische Zitate" the ...
2
votes
1answer
1k views

How to convert with Ruby accented characters in HTML special entities

How can I do this on Ruby? puts some_method("ò") # => "&ograve;" In other words convert an accented character like ò to his HTML version: &ograve; I tried like this: # coding: utf-8 ...
0
votes
1answer
582 views

php htmlspecialchars and utf-8

I am just trying to confirm something with htmlspecialchars I have just converted my database into UTF-8 and I think I finally have it all working, but throughout my code i have used the php ...