On Tue, 19 Mar 2002, Dr. Shim wrote:
> Hmmm. How about this?
> 
> echo "<form name=\"frmMovies\"  method=\"post\" action=\"" . echo $PHP_SELF
> . "\">";

You're concatenating "echo $PHP_SELF" rather than just $PHP_SELF, which 
isn't necessarily helping. But just between me and you, life would be a 
lot easier if you simply did:

echo '<form name="frmMovies" method="post" action="' . $PHP_SELF . '">';

miguel


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to