Tagged Questions
2
votes
1answer
289 views
How to deal with quotes and apostrophes for string comparison in MySQL so they match (collation)
MySQL uses collations to do string comparison because some characters should match
Exemple:
SELECT 'é' = 'e' COLLATE utf8_unicode_ci;
SELECT 'oe' = 'œ' COLLATE utf8_unicode_ci;
both return true
...
1
vote
2answers
985 views
PHP: POST data + apostrophes
Imagine this:
Form data contains an apostrophe
Form gets submitted
POST data gets serialized
POST data is written to database
Database data is retrieved
Data cannot be ...
0
votes
2answers
293 views
Passing PHP string to HTML href" attribute apostroph problem
I am trying to pass a string from a PHP variable to HTML
<a href="javascript:deleteProduct('<?=addslashes($row['productName'])?>');"
The problem is with the apostrophes. The string might ...
0
votes
3answers
449 views
Why string with single quotes raises error when inserted in DB?
My question is: How do you allow single quotes in strings?
For example, I have a form, and a text box. It is set up to allow the user to enter their name. From there, it posts and feeds the data ...
0
votes
2answers
946 views
Apostrophes replacing quotation marks in script tag in input field
I have this input in a form:
<input type="text" value="<script src='/js/script.js' type='text/javascript'></script>" name="embed"/>
The quotations in general have to be double, ...