Tagged Questions
A PHP function that convert special characters to HTML entities
5
votes
3answers
123 views
How to prevent XSS in attributes
so I have a site where users can register using a username of their choosing and can submit large blocks of text and add comments. Currently, to avert XSS, I use strip_tags on the data on input to the ...
4
votes
2answers
450 views
Adding 'utf-8' parameter to occurances of htmlspecialchars() - can it break anything?
Assuming my project is utf-8 throughout and has always been used with utf-8 encoding, is there anything legit that could possibly break if I change all occurances of htmlspecialchars($var) to ...
4
votes
7answers
2k 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().
3
votes
1answer
122 views
Which are the HTML, and XML, special characters?
What are the special reserved character entities in HTML and in XML?
The information that i have says:
HTML:
& (replace with &)
< (replace with <)
> (replace with ...
3
votes
1answer
223 views
filter_var vs htmlentities vs htmlspecialchars
Disclaimer
This is not a question about whether we should be escaping for database input. This is strictly looking at the technical differences between the three functions in the title.
...
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 ...
3
votes
4answers
569 views
How to Remove Html Tags in PHP?
I use htmlspecialchars function in my string. But, I don't want to clean them;
<b>, <br>, <p> <ul>,<li> bla bla...
Example: Mystring = ...
3
votes
3answers
4k views
How do I convert special characters using java?
I have strings like:
Avery® Laser & Inkjet Self-Adhesive
I need to convert them to
Avery Laser & Inkjet Self-Adhesive.
I.e. remove special characters and convert html special ...
3
votes
4answers
1k 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 ...
2
votes
3answers
108 views
Sanitizing PHP/SQL $_POST, $_GET, etc…?
Ok, this subject is a hotbed I understand that. I also understand that this situation is dependent on what you are using as code. I have three situations that need to be resolved.
I have a form in ...
2
votes
1answer
55 views
What is a function that will allow output with HTML and avoid XSS attacks
I am looking for a way or function that will allow me to display data from my mySQL database. The users are allowed to post articles, that I use mysql_real_escape_string to avoid SQL injections before ...
2
votes
4answers
71 views
Question on preventing SQL with magic_quotes off and XSS with htmlentities
On my server I have magic_quotes turned off.
When a user save content as article in my DB from a form, I use
$text = mysql_real_escape_string($_POST['text']); to prevent SQL Injecion.
This is my ...
2
votes
1answer
103 views
Flex & PHP: How to Use htmlspecialchars?
I'm using Flex 3 with remoting to return data from a MySQL database. Do I need to use htmlspecialchars in order to keep my site secure?
As I understand it, htmlspecialchars is used to "sanitize" ...
2
votes
3answers
228 views
Best Practices when outputting html data from database to browser
I store html data in a database.
The html data is very simple, and is generated by a wysiwyg editor.
Before I store the html data in the database and I run it through HTMLPurifier, to remove any ...
2
votes
3answers
319 views
when to use htmlspecialchars() function?
Hi
I was wondering when is the appropriate place to use htmlspecialchars(). Is it before inserting data to database or when retrieving them from the database?
2
votes
3answers
3k views
htmlspecialchars(): Invalid multibyte sequence in argument
I am getting this error in my local site.
Warning (2): htmlspecialchars(): Invalid multibyte sequence in argument in [/var/www/html/cake/basics.php, line 207]
Does anyone knows, what is the problem ...
2
votes
2answers
571 views
Why htmlspecialchars_decode in PHP does not have the charset parameter as in its counterpart?
There is a charset parameter in htmlspecialchars but the decode version does not have it. In comparison to the similar htmlentities, the encode and decode functions both have the charset parameter. So ...
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("ò")
# => "ò"
In other words convert an accented character like ò to his HTML version: ò
I tried like this:
# coding: utf-8
...
2
votes
3answers
571 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 ...
2
votes
2answers
3k 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 = ...
1
vote
1answer
62 views
htmlspecialchars ampersand
<h3><?php echo $this->__('Details & Documents') ?></h3>
The above prints out as: Details & Documents
What is the proper syntax so that it prints as: Details & ...
1
vote
2answers
55 views
Is there a way to send parameters into a callback function without creating my own function first?
I have an array of values that I would like to run through htmlspecialchars but with an argument such as this:
$param = htmlspecialchars($param, ENT_QUOTES);
The problem is, I have an array of ...
1
vote
2answers
107 views
Send special characters through AJAX ( “<” , “>” , “&” )
I send some test through jquery's ajax request.
This text contains some special characters like "<" , ">" , "&", which stand for <, >, and &.
$.ajax({
type: "POST",
url: ...
1
vote
4answers
85 views
Is a foreach loop on $_GET a good way to apply htmlspecialchars?
I'm wondering if there is a significant downside to using the following code:
if(isset($_GET)){
foreach($_GET as $v){
$v = htmlspecialchars($v);
}
}
I realize that it probably isn't necessary ...
1
vote
2answers
217 views
json with special characters like é
I'm developing a dependent select script using jQuery, PHP and JSON as the response.
Everything goes well except for using special characters like French ones (é , è , à...)
if I pre-encode them ...
1
vote
2answers
90 views
handling WYSIWYG data in PHP
I need to use a wysiwyg editor for handling user input.
How do you process this in php?
If i retrieve the data and use, htmlspecialchars then all the characters that were converted to special ...
1
vote
0answers
66 views
How to deal with oriental characters? [closed]
How do you deal with crazy characters, that does not have a special meaning for the browser and thus htmlspecialchars() won't catch them (I mean they are XSS safe), but they break your site appearance ...
1
vote
1answer
49 views
find character with regular expression except listed items
Hi I'm stuck on a regular expression.
so i have tones of text wich is full of
`& , , <... e.t.c.`
i need a regexp witch will find all &-s that are not part of listed ...
1
vote
1answer
85 views
htmlspecialchars is converting < to >
im building a small forum and got this problem that when i post a comment on it. That have < inside it then htmlspecialchars is converting it to >. link to forum (it's danish but your should ...
1
vote
4answers
1k views
htmlspecialchars & ENT_QUOTES not working?
Not done hardly any PHP programming for several months so not sure if i am missing something.
Basically on displaying data from MySQL database i have a htmlspecialchars() function below that should ...
1
vote
2answers
217 views
php XML DOM translates special chars to &#xYY;
I send this with AJAX POST:
<li><ul class "zone zCentral ui-sortable"><li><ul class="region rCol3 ui-sortable"><li class="" style=""><div><span class="tc ...
1
vote
3answers
284 views
php form security
I was reading an article about form security becuase I have a form which a user can add messages.
I read that it was best to use strip_tags(), htmlspecialchars() and nl2br()
Somewhere else said to ...
1
vote
2answers
118 views
htmlspecialchars removes formatting
i'm calling the htmlspecialchars function inside another function in a class, but when i do this, even though the data displays, it removes all formatting showing the data in a single line.
this is ...
1
vote
7answers
1k 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
1k views
Using mysql_real_escape_string and htmlspecialchars in cakephp?
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 it in ...
0
votes
1answer
42 views
Textarea file edit php
I have a PHP script for editing files, html, php, etc..
It is working in it's entirety except, when you enter into the textarea form field, for example:
<div>
& nbsp; or & amp;
...
0
votes
1answer
32 views
Invalid Characters not displaying
I have an xml feed which i cannot edit, its remote.
Now when i import it to db
it says this:
A taste of Turkey for £21 10 Meze dishes, bread and drinks for two at Cirrik Fulham
but is outputting ...
0
votes
1answer
24 views
open graph image url problems with converted special chars XKB Symbols
I try to use the like-Button and therefor the open graph.
My problem is, that "&" and "$" chars are always replaced by & and %24
Of course, thats the normal case, but I need a clean $ and no ...
0
votes
1answer
32 views
Strange behavior of htmlspecialchars in my bbcode parser class
I wrote a class to parse bbcode but I have a problem when I use the "escape" (function chtml::encode is a wrapper for htmlspecialchars).
MyBBcodeParser: http://snipt.org/srlo0
Case ...
0
votes
1answer
57 views
PHP htmlentities() and htmlspecialchars() are broken / do not work
I have used these two functions in the past,and they worked fine. I'm developing a CakePHP application and for some reason use of either of these functions does NOTHING. I've setup a simple test, and ...
0
votes
1answer
37 views
Special characters parsing (ü,ä, etc). Works on localhost, not http
I'm running a string of text against a body of text to determine if the string of text exists within a specific context (in this case, inside h2 heading tags). I can take an example and it works ...
0
votes
1answer
63 views
Avoiding double encoding in <INPUT> while using htmlspecialchars
Say you have a text <INPUT> for a user's name and they decide to type in
Johnny's Pizza
This is saved in DB as
Johnny's Pizza
But if the user decides to edit, I repopulate the text ...
0
votes
1answer
37 views
Unicode Replacement Characters in the PHP htmlspecialchars function
In the htmlspecialchars function, if you set the ENT_SUBSTITUTE flag, it is supposed to replace some invalid characters.
What characters are replaced? And what is the mapping between the invalid ...
0
votes
4answers
59 views
Is using htmlspecialchars() sufficient in all situations?
My users are allowed to insert anything into my database.
So using a whitelist / blacklist of characters is not an option.
I'm not worried (covered it) about the database end (SQL injection), but ...
0
votes
1answer
37 views
PHP htmlspecialchars and character sets issue
I've got a page that loads content from a database. I have the page set to use utf-8 as such
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
I've set the collation on ...
0
votes
1answer
108 views
how to remove special characters (ex:Montréal-Rive-Sud) from mysql databse
how to remove special characters
Montréal-Rive-Sud
the above one is city name this i'm getting from xml feeds. It is directly inserting into my mysql database. now i want to remove this ...
0
votes
3answers
65 views
htmlspecialchars - there must be a better way
My understanding is that all variables should be output through htmlspecialchars() in a view.
Are there any approaches or methods to do this, without having to specify the function on each ...
0
votes
0answers
15 views
Having an anchor tag with htmlspecialchars()
I'm having little issue with my home page php forum system.
I'm running a jQuery Q/A web site which utilizes SyntaxHighlighter by Alex Gorbatchev. I was forced to use one of the 2 options for using ...
0
votes
1answer
83 views
Codeigniter php tags stripping with xss_clean
Why if i pass a $_POST['string'] = "<?php echo 'hey' ?>" then i pass it to the xss_clean() with echo $this->input->post('string',true); it is outputted as &lt;?php echo 'hey' ...
0
votes
3answers
118 views
Ensure valid XHTML from a string in PHP
I'm using XHTML Transitional doctype for displaying content in a browser. But, the content is displayed it is passed through a XML Parser (DOMDocument) for giving final touches before outputting to ...