On Sunday 17 March 2002 11:46, Dr. Shim wrote: > I've changed > > <form method="post" action="<?php $PHP_SELF; ?>"> > > To > > <form method="post" action="<?php =$PHP_SELF; ?>"> > > > And I get a parse error. Could you possibly help me correct this? (I'm a > newbie, so have pity on me. =)
Use: <form method="post" action="<?php echo $PHP_SELF; ?>"> Also, please use a descriptive subject heading next time! -- Jason Wong -> Gremlins Associates -> www.gremlins.com.hk /* Paul's Law: You can't fall off the floor. */ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php