The strip-tags tag has no wiki summary.
12
votes
3answers
610 views
Is strip_tags() vulnerable to scripting attacks?
Is there a known XSS or other attack that makes it past a
$content = "some HTML code";
$content = strip_tags($content);
echo $content;
?
The manual has a warning:
This function does not ...
10
votes
6answers
3k views
Using PHP substr() and strip_tags() while retaining formatting and without breaking HTML
I have various HTML strings to cut to 100 characters (of the stripped content, not the original) without stripping tags and without breaking HTML.
Original HTML string (288 characters):
$content = ...
5
votes
3answers
142 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 ...
5
votes
3answers
858 views
jQuery (almost) equivalent of PHP's strip_tags()
Is there a jQuery version of this function?
string strip_tags( string $str [,
string $allowable_tags ] )
strip all tags and content inside them from a string except the ones defined in the ...
3
votes
2answers
40 views
Does strip_tags() handle embedded tags
I'm away from a computer with PHP installed and was wondering what the result of strip_tags() would be on the following text:
"<scr<h1>ipt>alert('oh oh')</scr</h1>ipt>"
Would ...
3
votes
1answer
127 views
Remove blank paragraph tags - TinyMCE
I am trying to remove blank paragraphs generated by TinyMCE. I want to use a RegEx because the set of HTML tags is finite in my universe but I am not sure how to go about it.
For this purpose my ...
3
votes
3answers
191 views
How would one strip text before and after a certain html tag
Basically I want to take something like:
textheretextheretexthere
<table>
<tr><td>heres some stuff</td><td>and some morestuff</td></tr>
</table>
...
3
votes
3answers
330 views
How to strip tags in a safer way than using strip_tags function?
I'm having some problems using strip_tags PHP function when the string contains 'less than' and 'greater than' signs. For example:
If I do:
strip_tags("<span>some text <5ml and then ...
3
votes
2answers
158 views
When strip_tags() Burns a Haystack
I've got a list of websites for each US Congress member that I'm programmatically crawling to scrape addresses. Many of the sites vary in their underlying markup, but this wasn't initially a problem ...
2
votes
1answer
109 views
strip_tags within a preg_replace
When posting a link in an CMS formatted like this:
[url=http://www.examplesite.eu]ExampleSite[/url]
the title description is the url instead of the linktext. (linktext=ExampleSite)
The html output ...
2
votes
3answers
63 views
PHP: Echo Failure via $_GET
I am currently displaying errors on my website using this code:
<?php
$failure = strip_tags($_GET['failure']);
if($failure!=""){
echo '<div class="error">';
echo $failure;
echo ...
2
votes
2answers
70 views
HTML to plaintext - unknown original encoding
I'm working with PHP, getting html from websites, converting them to plain text and saving them to the database.
They need to be saved to the database in utf-8.
My first problem is that I don't know ...
2
votes
1answer
57 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
76 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
2answers
109 views
Strip tags with javascript and handle line breaks
I want to strip tags from a html, but preserves it's line breaks.
I want the behaviour like copying the text in browser and pasting it in notepad.
For example, a code that converts:
...
2
votes
2answers
192 views
strip_tags: strip off the messy tags and styles
How can I strip off certain html tags and allow some of them?
For instance,
I want to strip off span tags but allow the span with underline.
<span style="text-decoration: ...
2
votes
2answers
804 views
How to strip or escape html tags in Android
PHP has strip_tags function which Strip HTML and PHP tags from a string.
Does android have a means to escape html?
2
votes
2answers
320 views
strip <br>(n12br) get from database field
i have a textarea value which its value derived from a field(nl2br)
how to strip off "< br/>", so that when i want to edit this field, the "< br />" will not be appeared?
//$data["Content"] is ...
2
votes
1answer
245 views
How to manipulate strings in a Blogger template. Impossible?
This question is about Blogger Template manipulation. People developing/changing or manipulating Blogger templates in any way know its syntax hence can provide some input.
I write a development ...
2
votes
1answer
264 views
Problem using strip_tags in php
I have used strip_tags to remove html tags from the text.
Example
<h1>title of article</h1><div class="body">The content goes here......</div>
outputs
title of ...
2
votes
3answers
429 views
PHP strip tags also removing \n
I'm using strip_tags in PHP and after it has processed the string, the string now also contains no \n's..
Is this standard with strip_tags?
2
votes
5answers
140 views
I'm learning PHP on my own and I've become aware of the strip_tags() function. Is this the only way to increase security?
I'm new to PHP and I'm following a tutorial here:
Link
It's pretty scary that a user can write php code in an input and basically screw your site, right?
Well, now I'm a bit paranoid and I'd rather ...
1
vote
2answers
51 views
C# Internet Explorer and stripping HTML tags
Is there any way to open Internet Explorer process from C#, send html content to this browser and capture 'displayed' content?
I am aware of other html stripping methods (e.g. HtmlAgilityPack) but I ...
1
vote
4answers
106 views
strip_tags not working
I am truing to filter html characters out like this
$user = $_POST["user"]; //Get username from <form>
mysql_real_escape_string($user); //Against SQL injection
strip_tags($user); //Filter html ...
1
vote
2answers
43 views
strings after “<” cannot be seen when using PHP strip_tags function
Let assume that $reply = "blah blah blah >< blah blah blah";
(>< is popular emoticon in korea)
but, when i use "strip_tags" to strip every html and php tags in $reply, every characters after ...
1
vote
3answers
118 views
MYSQL remove <font> tags and style=“” attributes
I'm redesigning a web site that has a bunch of tags in the content pasted in from Word. I would like to get rid of every instance of a font tag.
I would also like to get rid of all the inline style ...
1
vote
1answer
147 views
What is the MYSQL query equivalent of PHP strip_tags?
I have a large database which contains records that have tags in them and i would like to remove them. Of course there is the method where i create a php script that selects all ... strip_tags a ...
1
vote
2answers
63 views
strip_tags() giving “can't use function return value in write context” when not writing
I got the error Can't use function return value in write context when trying to do assignment with empty(strip_tags($string)) as the conditional in a ternary statement. So for testing, I got rid of ...
1
vote
1answer
120 views
Strip tags, but keep the first one
How can I keep for example the first img tag but strip all the others?
(from a HTML string)
example:
<p>
some text
<img src="aimage.jpg" alt="desc" width="320" height="200" />
...
1
vote
5answers
110 views
Strip tags problem?
I have a form. When users submit the data, my script checks the text for php/html with
$text1 = strip_tags($text);
Then it inserts the data into the database.
But when users submit something like ...
1
vote
1answer
54 views
Wordpress php echo issue
Im trying to filter out all of the tags inside a post in wordpress using strip_tags(). I set it up like this:
<?php
// The Query
echo date ("Y");
query_posts( 'p=10' );
// The Loop
while ( ...
1
vote
3answers
251 views
How to strip html tags and leave link from a variable in php
How do I strip the HTML tags from a variable and leave the link? I am trying to send emails with the link but without the tags. I've tried strip_tags(), but it removes the link.
$var = "this is a ...
1
vote
1answer
335 views
Strip HTML tags from Scala String
I am developing web app using Scala and Lift framework. I have record in DB which contains html perex of page
<b>Hi all, this is perex</b>
And in one scenario I need to print to user ...
1
vote
2answers
197 views
php removing duplicate html body and header
I have a string that it is echoed into the current document, however, I would like to insert only the content inside the <body>, how can I strip those tags so I end up with a valid document.
...
1
vote
2answers
164 views
Keep new line, when the HTML is on 1 line and new line layout is done with <div>
I need to get content from a site
I need to get
/html/body/div/div[2]/table/tbody/tr/td/div/div[2]/form/fieldset[2]/table[2]
or
<table class='properties'>
For which the code is visible ...
1
vote
3answers
216 views
XQuery - Strip out tag but leave its text
How do I strip out a set of tags in XQuery but still leave its text there? For example, if I have:
<root>
<childnode>This is <unwantedtag>some text</unwantedtag> that I ...
1
vote
4answers
207 views
PHP: strip the tags off the value inside array_values()
I want to strip the tags off the value inside array_values() before imploding with tabs.
I tried with this line below but I have an error,
$output = implode("\t",strip_tags(array_keys($item)));
...
1
vote
3answers
460 views
PHP: Strip Wrapping Paragraph Tags
I need to write a PHP function which removes opening and closing paragraph tags from a string, but only if they are at the very beginning/end. So the strings:
"Simple Test"
"<p>Here</p>"
...
1
vote
2answers
428 views
PHP allow img tags only
I need your assistence related php. In php, i want to allow html <img> tags only, i tried php's built-in function strip_tags() but it's not giving me the output i need. For instance, in the ...
1
vote
1answer
202 views
Strip Tags short div
Hello
I have a lot of div tags, but I want to delete the div tag of characters in that little div tag.Number of string <10
ex
$txt=<<<HTML
<div class="abc"> 123ab</div>
...
1
vote
5answers
689 views
PHP: How to mass replace $_POST[…] with strip_tags($_POST[…])
I'm currently recovering from a nasty XSS attack, and realized I never sanitized inputs on several of the forms on my site. I used Notepad++'s Find In Files feature to search for $_POST in all my PHP ...
1
vote
3answers
298 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 ...
0
votes
1answer
24 views
strip tags placing a delimiter or store to an array using PHP
I've stripped the tag data from an url like
$url='http://abcd.com';
$d=stripslashes(file_get_contents($url));
echo strip_tags($d);
but unfortunately all the tag values are clubbed together like ...
0
votes
2answers
42 views
strip_tags enough to remove HTML from string?
The site user can sign-up on a site, and during sign-up he can provide a name.
I want this name to be a valid name, and free of any HTML and other funky characters. Is strip_tags enough for this?
0
votes
1answer
40 views
Skip some tags with stripTags() function in prototypejs
I've successfully implemented a bit of code that strips all HTML from a pasted string using stripTags(). My next goal is to mark a few tags with white flags so they get ignored on 'paste' event using ...
0
votes
1answer
71 views
Equivalent strip_tags of PHP in javascript with allowed tags
I used this code to strip all tags but I wan't to save some tags like and so on... How can I do?
I can't understand how can I filter tags
/***************************************************
...
0
votes
1answer
45 views
How to use RubyGem Sanitize transformers to sanitize an unordered list into a comma seperated list?
Any one familiar with the RubyGem Sanitize, that provide an example of building a "Transformer" to convert
"<ul><li>a</li><li>b</li><li>c</li></ul>"
...
0
votes
2answers
42 views
php / html: replace html closing tags with newlines
I am crawling the web for html, and when I use php strip_tags it smushes the entire html into one line removing all structure.
I would like to preserve structure, by replacing closing h, p and br ...
0
votes
1answer
63 views
strip_tags href value - PHP
I have links in html with html tags in the href, for example:
<a href ="<strong>hello</strong>.html"><strong>hello</strong></a>
I would like to remove the href ...
0
votes
4answers
54 views
remove html tags
Currently, I use strip_tags, to remove all html tags from the strings I process. However, I notice lately, that it joins words, which contained in the tags removed
ie
$str = ...