Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

28
votes
7answers
13k views

HTML single quotes a “problem”?

I am a big time user of using double quotes in PHP so that I can parse variables without concatenating strings. As a result, when I am generating HTML I often use single quotes for setting tag ...
26
votes
6answers
5k views

Is there a performance benefit single quote vs double quote in php?

Are there any performance benefits to using single quotes instead of double quotes in php? In other words, would there be a performance benefit of: $foo = 'Test'; versus $foo = "Test";
3
votes
1answer
53 views

How to escape a single quote in single quote string in Bash?

I want to display a string in Bash like this I'm a student Of course you can do it like this echo "I'm a student" But how to accomplish this while using single quote around the string ?
2
votes
3answers
3k views

How to handle a single quote in Oracle SQL

How do I insert a record in a column having varchar data type having single quote in it? Example: first name is ROBERT and last name is D'COSTA
1
vote
3answers
5k views

Escaping single quote in PHP when inserting into MySQL

I have a perplexing issue that I can't seem to comprehend... I'm hoping someone here might be able to point me in the right direction... I have two SQL statements: - the first enters information from ...
0
votes
1answer
181 views

DataTable.Select with ' (single quote) Character in the query vb.net

I have a string like "Hello'World" and a Data Table with some records in it. One of those records is "Hello'World". The problem is, when I do a .Select in the Data Table, it only tries to search for ...
0
votes
1answer
52 views

How to use a pair of single-quotes inside double qoutes in bash?

I am going to write a bash script to manipulate user's data on mysql DB. Here is the problem. I need to pass a variable's value into a Mysql query string: read USERNAME; echo "USE drupdb; SELECT ...
0
votes
5answers
857 views

PHP, javascript, single quote problems with IE when passing variable from ajax post to javascript function

I have been trying to get this to work for a while, and I suspect there's an easy solution that I just can't find. My head feels like jelly and I would really appreciate any help. My main page.php ...