Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations sizbut on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

closing quotes

Status
Not open for further replies.

paulcarey

Programmer
Jun 15, 2001
45
GB
apparently this is missing closing quotes but I can't find where?

system("c:/progra~1/apache~1/apache/bin/wzzip \" c:\\progra~1\\apache~1\\apache\\htdocs\\prodacc\\d
ownloads\\".$name.".zip\" \" c:\\progra~1\\apache~1\\apache\\htdocs\\prodacc\\d
ownloads\\".$name);

 
What language is this written in? And what does it have to do with Apache? //Daniel
 
PHP questions go in the PHP forum, Apache questions go in this forum.
Anyway, to solve your problem, you should add a quote at the end, like this:
Code:
system("c:/progra~1/apache~1/apache/bin/wzzip \" c:\\progra~1\\apache~1\\apache\\htdocs\\prodacc\\d
ownloads\\".$name.".zip\" \" c:\\progra~1\\apache~1\\apache\\htdocs\\prodacc\\d
ownloads\\".$name."\"");
//Daniel
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top