I added the error reporting...still doesn\'t show up what the problem was. This is the code in my index.php
As you can see, I added some sort of alert if the user_ok ret
Change
<? endif; ?>
to
<?php endif; ?>
Since you've opened your control structure using the traditional <?php ?>
open-close tag, you'll need to close your conditional with th PHP tags:
<?php endif; ?>
Note that, per the documentation:
Mixing syntaxes in the same control block is not supported.
Also, note that the use of the <? ?>
short tags is only enabled if short_open_tag
is set equal to TRUE
in your php.ini
.
see the
<? endif; ?>
it should be
<?php endif; ?>