Tagged Questions

0
votes
1answer
45 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 …
1
vote
1answer
129 views

How to convert with Ruby accented characters in HTML special entities

How can I do this on Ruby? puts some_method("ò") # => "ò" In other words convert an accented character like ò to his HTML version: ò I tried like this: # coding: utf-8 …
0
votes
7answers
148 views

PHP htmlspecialchars error

why would this $trader_details = array_walk($trader_details, 'htmlspecialchars'); give this error? Severity: Warning Message: htmlspecialchars() expects parameter 2 to be long, string given …
1
vote
3answers
181 views

Weird characters being saved in my database…

Here is a screen shot of weird characters in my database. I know that this character combination is for a crazy apostrophe. Should I just let these characters stay in my database? Or should I strip …
0
votes
6answers
190 views

User Input filtering in PHP

Hello guys, Am currently working on an application that requires users to submit posts and comments which is displayed on the site. As we all know that user input can't be trusted so i used …
1
vote
2answers
315 views

Using mysql_real_escape_string and htmlspecialchars in cakephp?

Hello, I am using FCKEditor with CakePHP and when I save data sent from the editor I want to run the htmlspecialchars() and mysql_real_escape_string() functions on the data to clean it before I store …
1
vote
2answers
777 views

convert html characters back to text in Flash - AS3

I need to generate an editable xml file to supply content to a flash website. I am generating my file with a html form, and htmlspecialchars e.g.: $currentItem = …
2
votes
5answers
355 views

Is there a Python equivalent to the PHP function htmlspecialchars() ?

Is there a similar or equivalent function in Python to the PHP function htmlspecialchars()? The closest thing I've found so far is htmlentitydefs.entitydefs().
0
votes
2answers
427 views

php htmlspecialchars() from one form to another

Why can't htmlspecialchars() continually encode characters after each form submission? Take a look at the following example: <?php $_POST['txt'] = htmlspecialchars($_POST['txt']); ?> <form …
2
votes
4answers
415 views

Do you only run htmlspecialchars() on output or is there other functionality you also do?

When outputting user input, do you only use htmlspecialchars() or are there are functions/actions/methods you also run? I'm looking for something that will also deal with XSS. I'm wondering if I …