Tagged Questions

0
votes
6answers
65 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 i …
1
vote
6answers
78 views

quoting constants in php: “this is a MY_CONSTANT”

I want to use a constant in php, but i also want to put it inside double quotes like a variable. Is this at all possible? define("TESTER", "World!"); echo "Hello, TESTER"; obvio …
0
votes
2answers
93 views

How to call popen() with a pathname containing spaces under Windows in C/C++ ?

I'm trying to call popen() using mingw like this: #define RUN_COMMAND "\"C:\\Program Files\\CA\\BrightStor ARCserve Backup\\ca_qmgr.exe\" \"-list\"" int main() { outputPointer …
23
votes
11answers
478 views

Giving estimates for large scale projects in an Agile Environment

My firm just got its first large-scale development project inquiry and I would like to use an Agile process. The client has a vision for the application but openly admits to having …
0
votes
4answers
220 views

BASH - Single quote inside double quote for SQL Where clause

I need to send a properly formatted date comparison WHERE clause to a program on the command line in bash. Once it gets inside the called program, the WHERE clause should be va …
3
votes
4answers
392 views

BASH, escaping single-quotes inside of single-quoted strings

There is an example of "how to do this" on Stuart Colville's blog, but the example used there and the explanation of why it works is unclear. To keep things simple: Let's say you …
0
votes
2answers
158 views

Using Make $(dir) or $(notdir) on a path with spaces

I'm using code similar to the following in a Makefile: empty:= space:= $(empty) $(empty) path_escape = $(subst $(space),\$(space),$(1)) TOP=$(call path_escape,$(abspath .)) TARGE …
1
vote
2answers
190 views

My Zend Framework ‘quoting’ mess.

I've got a probably very simple issue to which I can't find a satisfactory (subjectively seen) answer in the Zend Framework manual or elsewhere... There are so many ways how I can …
1
vote
1answer
59 views

Estimate quote for a Flash Application with server side interaction

I am building a Flash AS3 application that allows users to modify images, (drag and drop, select, scale, alter saturation, etc) and then submit-save them to a server. The user wi …
0
votes
1answer
186 views

PHP: Using quote() on strings in MDB2 with MYSQL

Hi I'm using Pear's MDB2 and really enjoying it, but there is something that is starting to annoy me. I build the SQL string in the following way, using the quote method of the md …
6
votes
5answers
833 views

Stripping single and double quotes in a string using bash / standard Linux commands only

Hello Stack Overflow :-) I'm looking for something that will translate a string as follows, using only bash / standard Linux commands: Single-quotes surrounding a string should …
2
votes
1answer
119 views

\\\\$ converted to \$ in jsp template data

I just stumbled unto a weirdness in my JSP code. It seems that a double backslash followed by a dollar or percent symbol gets converted to a single backslash (plus symbol). That i …
1
vote
3answers
1k views

KSH scripting: how to split on ‘,’ when values have escaped commas? [solved]

I try to write KSH script for processing a file consisting of name-value pairs, several of them on each line. Format is: NAME1 VALUE1,NAME2 VALUE2,NAME3 VALUE3, etc Suppose I w …