So this login page is still under construction, but for some reason anytime I use the print command through php it will stop interpreting as php at the first encounter of a '>' and ignore anything that falls before that.
PHP Code:
<?php include_once ("authpaths.php"); ?> <html> <head> <title>Charlotte's Web Visual FX - Plese Login</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head>
<body bgcolor="#000000"> <?php print "<br>"; ?> <br> <table width="80%" border="0" cellpadding="0" cellspacing="0"> <!--DWLayoutTable--> <tr> <td width=25% height="23"> </td> <td width=75%><center><font size="6" color="#FFFFFF">Charolottes's Web Visual FX</font></center></td> </tr> <tr> <td height=90% valign="top"> <br><br> <form name="Login_Form" style="post" action="Login.php"> <table align="center" width="90%" border="0" cellpadding="3" cellspacing="0"> <tr> <td valign="middle"> <b><font color="FFFFFF" face="Verdana, Arial, Helvetica, sans-serif" size="2"> Username</font></b> </td> </tr> <tr> <td valign="middle"><b><font face="Verdana, Arial, Helvetica, sans-serif" size="2"> <input type="text" name="username" size="25" maxlength="25"> </font></b> </td> </tr> <tr> <td valign="middle"> <b><font color="FFFFFF" face="Verdana, Arial, Helvetica, sans-serif" size="2"> Password</font></b> </td> </tr> <tr> <td valign="middle"><b><font face="Verdana, Arial, Helvetica, sans-serif" size="2"> <input type="password" name="password" size="25" maxlength="25"> </font></b> </td> </tr> <tr valign="middle"> <td> <div align="center"> <input type="submit" name="Login" value="Login"> <input type="reset" name="Clear" value="Clear"> </div> </td> </tr> </table> </form>
</td> <td align="center" valign="middle"> <a href="http://www.charlotteswebmovie.com"><img border="0" src="http://www.cwvfx.com/Revisions/Images/charweb_poster.jpg" width=75%></a> </td> </tr> </table> </font> </body> </html>
In this example the second php block that should put a break will print "; ?> to the screen. Hope somebody know what is going on here.
Last edited by Nahele; 11-04-2005 at 11:14 PM..
|