0
votes
1answer
15 views
Windows Shell Scripting: Check for batch options containing double quotes…
Greetings, dear Experts!
I want to check the existense of parameter (or argument) sting at all in my batch script:
if "%*"=="" findstr "^::" "%~f0"&goto :eof
This works fine if none of …
0
votes
3answers
30 views
regex expression for escaped quoted string won’t work in php’s preg_match_all
I am trying to match quoted strings within a piece of text and allowing for escaped quotes within it as well. I tried this regular expression in an online tester, and it works perfectly. However, when …
1
vote
4answers
42 views
Write CSV To File Without Enclosures In PHP
Is there a native function or solid class/library for writing an array as a line in a CSV file without enclosures? fputcsv will default to " if nothing is passed in for the enclosure param. Google is …
2
votes
0answers
40 views
Quotes versus non quotes in bing [closed]
in bing.com :
java jobs -> 57,000,000 hits ("http://www.bing.com/search?q=java+jobs&go=&form=QBRE&scope=web&qs=n")
"java jobs" -> 234,000,000 hits …
0
votes
6answers
69 views
PHP-generated javascript and quote marks
I'm generating some javascript in my PHP code, and I need to assign some php variables to javascript variables. Unfortunately, sometimes my PHP variables contain quote marks. for instance:
$foo = …
1
vote
3answers
78 views
Why bother using mysql_real_escape_string() since $_POST addes slashes before a quote automatically?
In PHP, $_POST add slashes before a quotation mark automatically, so why bother applying mysql_real_escape_string()? For example, when I input 'rrr in an input field, and I get \'rrr when I echo it.
0
votes
1answer
33 views
zend framework : automatic quoting mysql queries doubts
I've got few doubts regarding quoting mysql queries in Zend framework. Though this question has helped me a bit but few things are still confusing:
1) $table is Zend_Db_Table. Trying to fetch a row …
2
votes
2answers
172 views
How to run exe in powershell with parameters with spaces and quotes
How do you run this command in powershell:
C:\Program Files\IIS\Microsoft Web Deploy\msdeploy.exe -verb:sync -source:dbfullsql="Data Source=mysource;Integrated Security=false;User …
1
vote
2answers
58 views
google finance tools on my website?
i am on the process of building a website execlusively for trading purposes. including live quotes and level 2 quotes. charts. user protofollio with automatic updates. news and so on.
am i allowed to …
1
vote
3answers
88 views
Forwarding command line arguments to a process in Python
I'm using a crude IDE (Microchip MPLAB) with C30 toolchain on Windows XP.
The C compiler has a very noisy output that I'm unable to control, and it's very hard to spot actual warnings and errors in …
2
votes
5answers
136 views
What is a Good Programming Related Senior Quote? [closed]
Although I expect this question to last for no more than 30 seconds its worth a try.
What would be a good programming related senior quote that would be subtle enough so that I don't look like a flat …
0
votes
4answers
37 views
Need help modifying javascript snippet
Google optimizer includes the following snippet as part of their conversion code. Unfortunately, the CMS we're using automatically converts the single quotes to ASCII (& #39;). I'm a novice with …
0
votes
1answer
93 views
jQuery double quotes
hi there, i have this form:
<form name="myForm" action="#">
<input type="text" name="firstField" />
<input type="text" name="secondField" />
<input type="submit" …
3
votes
1answer
45 views
gVIM on Windows: execute buffer and paths with spaces
Hello.
In gVim for windows it's possible to execute current buffer via :!% command. But, unfortunately, the buffer file name is supplied to cmd.exe without quotes, so if file path has spaces gVim …
0
votes
2answers
157 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 …
