Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
104 views

The fastest solution to port the php function addslashes to c++

string addslashes ( string $str ) Returns a string with backslashes before characters that need to be quoted in database queries etc. These characters are single quote ('), double quote ("), ...
2
votes
3answers
323 views

How to include multi-line html from django template into javascript variable

From a Django template, I would like to include an html snippet from a file, say mysnippet.html: <div> blah </div> into a javascript variable: <script type="text/javascript"> ...
2
votes
4answers
456 views

What's the difference between PHP's addslashes and mysql(i)_escape_string?

If they don't do exactly the same, what's the difference? The delimiter for values inside a MySQL query is the ' isn't it? Or maybe the " but that's also escaped with addslashes. In other database ...
2
votes
7answers
3k views

Htmlentities vs addslashes vs mysqli_real_escape_string

I've been doing some reading on securing PHP applications, and it seems to me that mysqli_real_escape_string is the correct function to use when inserting data into MySQL tables because addslashes can ...
1
vote
1answer
53 views

Symfony - error because of addslashes in DQL query

I do: $text = '%'.addslashes($text).'%'; $images = $this->getDoctrine()->getEntityManager() ->createQuery("SELECT img, cat, u FROM ...
1
vote
4answers
165 views

How to escape string from PHP for javascript?

lets imagine a form editor, it can edit available values. If the data contains " character (double quote) it "destroys" HTML code. I meant, lets check the code: so I generate HTML: onclick="var a = ...
1
vote
4answers
100 views

Escaping quotes in php

How do I escape quotes in php when trying to query mysql database. Without adding addslashes on every value: $fname=addslashes("Value's with quote''s'"); $lname=addslashes("Value's with quote''s'"); ...
1
vote
4answers
523 views

PHP 'addslashes' not behaving as expected

This has been driving be crazy, but I can't seem to find an answer. We run a technical knowledge base that will sometimes include Windows samba paths for mapping to network drives. For example: ...
1
vote
4answers
384 views

Antidote for magic_quotes_gpc()?

I've seen dozens of PHP snippets that go like this: function DB_Quote($string) { if (get_magic_quotes_gpc() == true) { $string = stripslashes($string); } return ...
0
votes
1answer
19 views

Are there any server settings to fix addslashes behaviour on calls to file_get_contents

Up until about a week ago, wordpress websites on our host showed no issues. However, since this morning we noticed an issue whereby admin pages failed to load in wordpress. On other sites on the ...
0
votes
1answer
48 views

How insert slash in mysql DB after addslashes()

<?php $link = mysql_connect('localhost', 'root', 'root') OR die(mysql_error()); mysql_select_db('autos') or die('no db'); $bookName = "O'relly"; $user = addslashes($bookName); $query = "INSERT ...
0
votes
3answers
58 views

Escaping Double Quotes in PHP (Wordpress)

I'm having difficulties escaping double quotes using the PHP addslashes function. If I run: $name = addslashes(get_the_title()); And the title has double quotes in it, the output still has double ...
0
votes
4answers
153 views

Is PHP's addslashes vulnerable to sql injection attack?

I have been reviewing articles on how/why PHP's addslashes function is vulnerable to sql injection. Everything I have read says there are problems with specific mysql encoding types ...
0
votes
1answer
183 views

addslashes JavaScript equivalent

I am looking for a proper version of a JavaScript equivalent of PHP's addSlashes. I have found many versions, but none of them handle \b, \t, \n, \f or \r. http://jsfiddle.net/3tEcJ/1/ To be ...
0
votes
2answers
74 views

Extended addslashes function in PHP

Hi can somebody help me with building an extended addslashes function, which will work with mixed combination of objects and arrays. For example i have this Object: $object = new stdClass; ...
0
votes
1answer
285 views

mysql text value with apostrophe not showing up correctly

I'm inserting the following TEXT value into MySQL using.. $groupname = addslashes($_POST['groupname']; When getting the value from Mysql I'm using $name = $row['groupname']; echo $name; And this ...
0
votes
1answer
264 views

How can I addslashes() to elements of a multidimensional array? (php)

I have a multidim array from my $_POST but I have to serialize() then save to the database... Normally, I can serialize but I got some problem with slashes (apostrophe and double quote). My array ...
0
votes
1answer
136 views

Qt based addSlashes version equivalent

I just wrote a Qt based php addSlashes function like, I wont to see any improvements, suggestions to it. I am planing to use this function to fill a file with hundred of insert query, to be more ...
0
votes
2answers
682 views

Making POST values dynamic within a loop to store as an array?

I've been working on trying to write a function that will grab the POST values of any given form submission, pop them into an array, loop through the array using trim, addslashes etcetera pass that ...
0
votes
4answers
531 views

error during addslashes() function in php

html form code- <td width="75"> <input name="txtQty[]" type="text" id="txtQty[]" size="5" value="<?php echo $ct_qty; ?>" class="box" onKeyUp="checkNumber(this);"> when I submit ...
0
votes
2answers
1k views

Addslashes, mysql_real_escape always adding two slashes?

I'm having an issue with inserting JSON into a database, my intention is to take the variables, json_encode them, remove slashes (from magic_quotes), and then addslashes back in to escape the quotes ...
0
votes
4answers
334 views

does php latest version add slash by default?

when i write input data: hel'l"lo print_r($_POST) display hel\'\"lo and when i use if(get_magic_quotes_gpc()){ mysql_real_escape_string($_POST); display hel\\\'\\\"lo now my quetion ...
0
votes
1answer
87 views

Search problem in mysql query

I have some problem regarding the search in mysql. Below is my query. SELECT * FROM table WHERE name LIKE "%admin\'s%"; When i am executing this query it will return zero data. actually i have ...
-1
votes
1answer
80 views

Escaping backslashes in php no matter how many \ in string

I'm very new to PHP. Currently,I'm facing one issue to escape \ and store in mysql DB. eg., If the string is like $str = \\aaaa\bbb\\\cccc$$ , I would like to save that string in DB . However, I don't ...