1

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.

Matt Ball
  • 354,903
  • 100
  • 647
  • 710
yuli chika
  • 9,053
  • 20
  • 75
  • 122
  • If you have a question about how to use Stack Overflow, please post it at http://meta.stackoverflow.com. Thanks! – Matt Ball Nov 10 '10 at 00:18

2 Answers2

1

You want a double backslash, e.g. "e:\\www\\test". See http://uk3.php.net/manual/en/language.types.string.php.

Oliver Charlesworth
  • 267,707
  • 33
  • 569
  • 680
0

In you backlash escape question, you can read it here, same question as yours

In posting a php code, you can read this tutorials.

http://www.tizag.com/phpT/postget.php

http://www.thesitewizard.com/archive/feedbackphp.shtml

Community
  • 1
  • 1
xscape
  • 3,318
  • 9
  • 45
  • 86