How to write a backslash escape behind \ ?
$newer = "e:\www\test\".$str.".html";
By the way, how to post a php code? Forgive I am a newer.
How to write a backslash escape behind \ ?
$newer = "e:\www\test\".$str.".html";
By the way, how to post a php code? Forgive I am a newer.
You want a double backslash, e.g. "e:\\www\\test"
. See http://uk3.php.net/manual/en/language.types.string.php.
In you backlash escape question, you can read it here, same question as yours
In posting a php code, you can read this tutorials.