I have the initial 2 Textboxes and a submit button...
When they click the submit button it reloads the same page and at the top of the page it has code that checks to see if the credentials are correct, if they are it logs them in and sends them to the next page, if they aren't, its suppossed to create the table that looks like this:
<table bgcolor="yellow" border="0"><tr> <td><font color="red">*Incorrect Username/Password</font></td> </tr> </table>
or in PHP
<?PHP echo "<table bgcolor=yellow border=0>"; echo "<tr>"; echo "<td>"; echo "<font color=red>*Incorrect Username/Password</font>"; echo "</td>"; echo "</tr>"; echo "</table>"; ?>
The table it self creates fine, but Im wondering how I can display this when they click the button
Any Ideas Im open to, thanks
-Cheers

New Topic/Question
Reply



MultiQuote





|