Philipp Bolliger: > Hi everyone, > > subject's allready my question ! I want to echo something like : > "<form action = \",?php echo $PHP_SELF ?> \" >" so that the action > becomes <? echo $PHP_SELF ?> !! But I can't figure out how to escape > ?> so that the interpreter doesn't take it as the end of the script > ! Any idea ?
you want to do this: echo "<form action=\"<?php echo $PHP_SELF ?>\">"; right? consider this: echo "<form action=\"$PHP_SELF\">"; /brother -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php