Tagged Questions
23
votes
5answers
28k views
json parse error with double quotes
A double quote even if escaped is throwing parse error.
look at the code below
//parse the json in javascript
var testJson = '{"result": ["lunch", "\"Show\""] }';
var tags = JSON.parse(testJson); ...
18
votes
7answers
5k views
Difference between single quote and double quote string in php
I'm not a major in PHP programming but I'm a little confused why I see some codes in PHP with string placed in single quote and sometimes in double quote. I just know in .NET, or C language, if it is ...
2
votes
5answers
334 views
String Containing double quotes is inserted incomplete in DB
Updated
The textarea i have provided in the form takes the user input as strings
String Containing double quotes is inserted incomplete in DB..
I have a string inserted in text area as
"Don't ...
1
vote
1answer
85 views
json_decode with values containing double quotes
I am trying to use an editable table and have it working except for when the array values passed to the save function contain double quotes. The error occurs at foreach loop
foreach($saveArray as ...
1
vote
2answers
81 views
regular expression to find all substrings inside double quotes php
I have a big database that has fields of paragraphs that are formatted like this:
["This is the first sentence", "This is the second sentent", "This is the third sentence", "This is the fourth ...
1
vote
7answers
276 views
php turn line break into semicolon
I have a csv file with this:
software
hardware
educational
games
languages
.
.
.
I need a new csv file with:
software;hardware;educational;games;languages;....
How can I do that?
I'm doing:
...
1
vote
5answers
156 views
How to quote values in php statement? Monday brain freeze
I have a piece of php code that reads values from a database resultset, shoves them into an array, and writes them to a CSV file. I need to force each value to be surrounded by double quotes when it ...
1
vote
2answers
140 views
learning about single and double quotes (.),("), and (')
Can you tell me what is the different using (')single quotes inside (")quotes and (")quotes inside (')single quotes? and at concat, what is the meaning of this '".$bla."' I still can not distinguish ...
1
vote
3answers
467 views
PHP mssql_query double quotes cannot be used
In java-jdbc, I can easily run the following SQL (NOTE the double quotes around columns and table names)
Select
cus."customer_id" ,
cus."organisation_or_person" ,
...
1
vote
6answers
4k views
php to extract a string from double quote
I have a string
This is a text, "Your Balance left $0.10", End 0
how can i extract the string in between double quote and have only the text
'Your Balance left $0.10' (without the double quotes)
...
0
votes
2answers
55 views
str_replace double quote from word
I have json data as a string that is being passed to javascript. Before the string is passed though, I am doing a search in php for all double quotes and replacing them. This is working fine but some ...
0
votes
4answers
57 views
Single quotes turning url into twins?
Just noticed that when using single quotes to echo a basic link in php, the url repeats itself.
<?php
echo '<a href=\"http://example.com\">Link URL - Single Quotes</a><br />';
...
0
votes
3answers
53 views
trouble nesting with three levels of quotes
I am trying to create a php variable that has three levels of nested quotes. How do I make a third level around "tackEvent", "downloads", "all", and "nofilter"? The double quotes that I have there are ...
0
votes
2answers
181 views
Using php preg_replace to parse out target double quotes in JSON string
I've been beating my head on this one, and can't figure out a regexp to accomplish the following:
Input string (this is JSON data surrounded by lots of other JSON):
...
0
votes
4answers
46 views
php having issue with including javascript and quotes?
Here is my code:
$buffer .= '<legend>'.$thisField.'</legend><input type="text" name="'.$thisField.'" id="'.$thisField.'"/> <a href="javascript:;" ...
0
votes
3answers
126 views
How to escape quotes and already escaped quotes in PHP before passing to Javascript?
There are many questions about escaping single and double quotes but I have had no luck finding an answer that solves my particular problem.
I have a PHP function that dynamically returns an image ...
0
votes
1answer
122 views
Php - format double-quoted string from a class
I have a class that build my main navigation. Everything works fine except for the html output i get in the source code. In my class i got something like this:
public function getNav(){
$output = ...
0
votes
4answers
91 views
PHP basic concatenation issue?
<?php echo ($i % 6 == 5) ? 'style=\"margin-right:0px\"' : ''; ?>
I just get style="" printed on the view port.
Update:
Why is unnecessary to escape double quotes when we are inside a string? ...
0
votes
5answers
204 views
HTML & PHP : Doublequotes-Singlequotes Issue
in HTML
we can
face='Tahoma'
face="Tahoma"
and in PHP
$name = "Junaid";
$name = 'Junaid';
$names = array('Junaid','Junaid','Junaid');
$names = array("Junaid","Junaid","Junaid");
now all these ...