The stripslashes tag has no wiki summary.
0
votes
0answers
8 views
What does wordpress do if magic quotes are turned off at server?
We recently upgraded to php 5.4.15, and it does not have magic quotes on as default. It was time :)
But it turns out wp is adding its own slashes to POST and everything, for its internal ...
0
votes
1answer
25 views
Pass hexdata to an externam program from PHP
here is my issue:
I wish to pass some hexadecimal data to an external app from PHP:
exec('echo "'.$message.'" | /usr/bin/gateway');
and $message comes from user input:
test'"/'\'/"\""//
...
0
votes
1answer
43 views
PHP: Stripslashes of Yahoo finance .CSV array
Im trying to delete the slashes of a array output. I am using the .csv file from yahoo finance. Somehow i can't get it work, the slashes don't strip. The output i get is "Google .inc" with slashes.
...
3
votes
1answer
57 views
stripslashes security testing
I am testing how secure is to use stripslashes()
I tried the following :
$str = chr(0xbf) . chr(0x27);
var_dump(stripslashes($str)); // string(2) " �' "
Then I changed it to this :
$str = ...
0
votes
1answer
96 views
Stripslashes not working
I am using this code in one of my 2 step form, Here i am validating the form inputs at step 2.php and saving it in session, then in step 3.php page I am fetching the form inputs from the session. Also ...
0
votes
0answers
102 views
php how to use stripslashes and htmlentities to prevent breakdown into ASCII with UTF-8
I was asking about the way to properly maintain characters from appearing in ASCII once the email is dispatched from the PHP email script.
For example, if an email is sent with the following subject:
...
0
votes
0answers
78 views
PHP stripslashes variable encoding from contact form
In my PHP contact form script,
I'm using _POST to submit a PHP variable containing quotation marks that have to be escaped, and upon arrival, its value becomes the value of the $formSubject variable ...
0
votes
2answers
42 views
Strip slahes in url
I am using regexp in php I want to use use in regexp like thatI can use it but error is popupHow can solve this problem.please guide me.suppose here $url is dinamically changed like that
$preg_wurl = ...
0
votes
1answer
88 views
Best order between stripslashes, utf8_decode, mysql_real_escape_string?
What is the best order if I need to use these functions in PHP: stripslashes, utf8_decode and mysql_real_escape_string.
Actually somme \\ appears for example: Francois\'s Farm.
Thanks.
0
votes
1answer
99 views
PHP/Mysql - Add form data HTML elements with line breaks
Basically, I have an administration area where users are to be able to add information to a MySQL database using a form textarea. The users have little or no HTML knowledge so I'd like them to be ...
0
votes
1answer
153 views
PHP: Incorrect JSON decoding and stripslashes \t \n
I think in server that I'm working, magic_quotes are active and when receive a json from jquery.ajax I do this:
alcancesP = stripslashes($_POST['alcances']);
After I decode alcancesP:
...
0
votes
1answer
112 views
PHP stripslashes eating too many backslashes
I'm trying to strip some slashes with the traditional stripslashes function and am getting odd results:
echo stripslashes('\\\\');
This gives me: \
echo stripslashes('\\\\\\\\\\\\');
// there ...
0
votes
1answer
186 views
magic-quotes is ON && usage of stripslashes AND mysql-real-escape-string TOGETHER [duplicate]
Possible Duplicate:
How to prevent SQL injection in PHP?
i am on a free php server, I don't have access to php.ini file and magic_quotes is ON. so while I add records into mysql via my form ...
1
vote
2answers
322 views
mysql_real_escape_string, stripslashes and htmlspecialchars
When I post a variable to the database, of course, I use mysql_real_escape_string. This way special characters go in the database as it should.
When I read this variable out of the database, I use ...
0
votes
1answer
114 views
How to prevent strip plus sign with codeigniter url_title function?
I am using that function in order to prevent wrong URL structure:
<?
if (!defined('BASEPATH'))
exit('No direct script access allowed');
if (!function_exists('seo_helper')) {
function ...
0
votes
1answer
74 views
Javascript echoing out HTML rather than processing it
I'm trying to customise the output from a WordPress plugin called Showtime. Showtime contains the following Javascript to output what is entered in the schedule. For styling reasons I'm entering into ...
0
votes
1answer
95 views
Displaying links within a body of text from MySQL Database
I am building a personal blog from scratch and I am having trouble with getting my links to display correctly when outputting the text body from MySQL.
For example;
I have a link embedded about 200 ...
0
votes
1answer
163 views
Escaping apostrophes in wordpress
I wrote a plugin for wordpress that stores restaurant menu items. But whenever apostrophes are used, wordpress escapes them with slashes on both the admin and front end and keeps adding slashes to the ...
-2
votes
1answer
78 views
mysql_real_escape_string vice versa function [closed]
I`m using this code for security:
$res = mysql_real_escape_string($firstData );
now ,I want to convert result of this code to the first data! how can I do that?!
I wrote below code, but it doesn`t ...
0
votes
2answers
578 views
PDO: stripslashes when getting results
I am using PDO prepared statements so it's adding slashes when it's needed before inserting into the database.
I was wondering the proper way to get the results and display it on the website without ...
0
votes
1answer
82 views
Automatic slashes
So I have a dictionary that gets populated with keys and values, the only problem is that when you try to enter a string that has this general outline "blah\stuff" and you try to log it, then the ...
-1
votes
2answers
190 views
PHP can't strip slashes when trying to echo mysql escaped data to XML using DOMDocument
I inserted in database some HTML text after escaping them using mysql_real_escape_string, and I am trying to add them to XML document to be read by flash file, I am using DOMDocument class to make the ...
0
votes
2answers
389 views
mysql auto stripslashes when select contents from db?
i'm in a strange situation, in my server when i insert string to DB with mysql_real_escape_string then i print it, everything is ok and looks like mysql make an auto stripslashes! for example i save ...
0
votes
1answer
220 views
Is it safe to use (strip_tags, stripslashes, trim) to clear variable that holds URLs
It's quite pleasure to be posting my first question in here :-)
I'm running a URL Shortening / Redirecting service, PHP written.
I aim to store and handle valid URLs data as much as possible within ...
1
vote
1answer
101 views
PHP variable is messing up img input
In my code I am having PHP write a variable into a text file.
$stringData = '<p class="blogcontent">' . $content . '</p>';
fwrite($fh, $stringData);
The variable $content includes this ...
0
votes
1answer
355 views
Slashes being added with Symfony2 form builder - where do I use stripslashes()?
I'm building a small website with Symfony2 (i.e. not Symfony 1.x). I used the default CRUD generator from an entity created using the CLI generator. However, when it's saved to the database, it's ...
-2
votes
3answers
494 views
Stripslashes doesn't work for my magic-quotes in PHP
I have started using magic quotes and I have encountered a small problem, an easy problem I guess which I can't figure out.
I wan't to use striplashes which it does not remove when I write something ...
1
vote
2answers
312 views
Why am I getting gibberish characters?
I'm making a PHP script to reverse the text within an HTML document to handle badly converted Hebrew PDFs. (sigh :))
Everything works, however the script has a very strange output. Only SOME of the ...
0
votes
1answer
251 views
PHP: Secure way save and display user's code from CodeMirror
I'm setting up a simple web-based code editor using CodeMirror to help students learn basic HTML, CSS, and JavaScript.
I want the students to be able to save their code, so it is visible in a ...
0
votes
2answers
129 views
Displaying fields from MySQL table but no field with quotes being printed
I am fetching data from a MySQL table to display it on a page. The script is displaying the information, but in my table normal quotes we're inserted as another type of quote characters such as. ( ’ ) ...
-2
votes
2answers
1k views
Effectiveness of stripslashes against SQL Injection? [duplicate]
Possible Duplicate:
Best way to defend against mysql injection and cross site scripting
How to include a PHP variable inside a mysql insert statement
I was wondering if anyone had came ...
0
votes
1answer
115 views
php array_walk_recursive not working on mysql result set array with stripslashes
I have a mysql result array and I'm trying to stripslashes on the array using array_walk. It's not stripping slashes from mysql. It is working on the array I manually added ($dataArr['xxx']) though.
...
5
votes
9answers
519 views
Confusion about mysql_real_escape_string and strip_slashes
I have users entering their name, as in: O'riley.
Before I enter this data into the MySQL DB, I run mysql_real_escape_string.
Problem is, when I then select this data for display and use later, it ...
6
votes
1answer
3k views
What is the simplest way to remove trailing slashes from each parameter?
What is the simplest way to remove trailing slashes from each parameter in the '$@' array, so that rsync copies the directories by name?
rsync -a --exclude='*~' "$@" "$dir"
0
votes
3answers
183 views
stripslashes issue when character after two backslashes
I know it's stupid question, but I cannot to google anything for my problem.
I have $q = "This is\\same text"; and do
$q = stripslashes($q);
So, $q is now equal to "This issame text"! How I can to ...
1
vote
3answers
1k views
php stripslashes leaves one slash
Like the subject says I have some $_POST data that I need to strip all slashes from. However, it leaves behind one and when there are errors on the form it prints the post data back to the user so ...
0
votes
1answer
264 views
Show returns from textarea on output from mySQL
All,
I have a textarea that someone can type in. When I submit the form and insert in into my database I do it like this:
$textarea = mysql_real_escape_string($_POST['textarea']);
When I display ...
0
votes
1answer
42 views
Strip slashes from datavse request correctly
I have message stored in my database containing a slash: e.g. don\'t
To present the message I use this procedure. The thing is the backslash is still displayed.
How can I get rid of it.
I have tried ...
0
votes
1answer
113 views
eBay API/XML issues with slashes and htmlentities
I setup a local server using EasyPHP 5.3.8.1 - on it, I wrote a bunch of eBay API/XML stuff to post items to eBay. Everything works perfectly when using my local server. However, when I upload the php ...
1
vote
4answers
355 views
Using stripslashes on a database row php
{$row['info']}
How do I use stripslashes() php function on this?
I've tried :
stripslashes({$row['info']}), doesnt work and this: {stripslashes($row['info'])}
Neither work.
Do I have to use a ...
1
vote
5answers
541 views
Do I really need to use mysql_real_escape_string when I save data in the DB?
I am using mysql_real_escape_string to save content in my mySQL database. The content I save is HTML through a form. I delete and re-upload the PHP file that writes in DB when I need it.
To display ...
0
votes
1answer
156 views
another stripslashes problem
I didnt find a real solution for this.
As many others now I use a jquery wysiwyg editor and save the output in mysql. The problem occurs when I load back into editor and save it again. The backslash ...
2
votes
1answer
707 views
Is there a reason why I need to use stripslashes for user submitted data?
What do people use stripslashes for and is it typically used in conjunction with addslashes? Why should I strip or add slashes to a string that's submitted by a user?
0
votes
1answer
252 views
Equivalent of PHP's stripslashes() in C?
was wondering if an Equivalent of PHP's stripslashes() in C existed?
0
votes
1answer
2k views
Will mysql_real_escape_string() cancel out stripslashes()?
I am having users enter some information that will be stored in sql. Of course I want to escape all the quotation marks and such.. but i don't want that stuff to be outputted into the final html ...
1
vote
3answers
168 views
I'm getting a semicolon error in PHP and can't understand why it's a problem
This is the error message:
Parse error: syntax error, unexpected ';' in /home1/goldensu/public_html/camira/contactForm.php on line 155
and this is the code:
$sendMessage = "Someone is ...
0
votes
2answers
377 views
stip slashes from database return with while loop
Can I loop through DB results and remove Slashes?
(I started getting more slashes everytime I edited the text and put it back into the DB)
$db = new connection();
$query = "SELECT * FROM ITEMS, ...
1
vote
5answers
3k views
Use JavaScript to stripslashes ? possible
I'm using ajax to grab a URL. The problem is the URL has slashes in it and when the JQuery load takes place afterwords it will not load the page.
AJAX success bit:
success: function(data) {
...
1
vote
4answers
3k views
I use mysql_real_escape_string before SQL INSERT, but then have to apply stripslashes to my retrieved data. Is it normal?
I'm no PHP/SQL expert, and I've juste discovered that i had to apply mysql_real_escape_string to secure my SQL INSERTS.
I made a function using several advice found on the net, here it is:
function ...
0
votes
3answers
487 views
Problems in inserting data using “safe way to input data to mysql using PHP”
I am trying to input data using forms into the MySQL, and also using mysql_real_escape_string for this purpose. Unfortunately I am having a problem with the output. It displays \s, or if I use ...



