if you have structure like
<html>
<?php 
if (isset(...)){
...;
}
elseif (isset()){
}
else {
...
?>
</html>
then you need to insert "}" before "</html>
or if you use syntax
<html>
<?php
if (isset()):
...;
elseif (isset()):
...;
else:
...;
?>
</html>
you have to insert "endif;" 
If you think you did it but still have an error, try to count your "if" 
statements and "endif;" maybe something is missing.

Youri


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to