I am using File IO, to save a file in local system(i.e PC C: drive), URL to save is like this "C:\htmlfiles\".$name_of_file.".html" the "\" in the string "C:\htmlfiles\" is giving the problem, tell me how to escape the '\'. please help.
+7
A:
\
is escaped by \
(like all the other special chars, too), so the result would be \\
oezi
2010-03-10 11:21:31
thanks Oezi, thanks a lot... It worked... actually i was using single quotes which was giving me logical error...
Harish Kurup
2010-03-10 11:28:05
+2
A:
For the pathnames you can use forward slash on Windows too
"C:/htmlfiles/"
would work
Col. Shrapnel
2010-03-10 11:48:30