--- Begin Message ---
On Sun, 2002-07-07 at 01:07, Shiloh Madsen wrote:
> The newbie is still having troubles heh. Maybe some kind soul can tell
> me what im doing wrong this time. This is the code for a page I am
> working on. When I try to bring up the page in a browser, I just get a white page,
>instead of having the HTML display. Anyone able to tell me why?
>
>
>
> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
>
> <html>
> <head>
> <title>Login Page</title>
> </head>
> <?php
> $dbhost = "127.0.0.1";
> $dbuser = "root";
> $db = "LoginInfo";
>
> $LoginDB=@mysql_connect($dbhost, $dbuser, $dbpass);
your @ supresses error messages from php
> if (! $LoginDB) {
try
if (! isset($LoginDB))
die(mysql_error());
instead
> print "<p>Unable to connect to the database server at this time.</p>";
> exit();
> } else {
> mysql_select_db("GameDB",$LoginDB);
> if (! @mysql_select_db("GameDB") )
same as above your @ supresses error messages from php
again try
$ConnDB=mysql_select_db("GameDB")
if(! isset(($ConnDB))
die(mysql_error());
> print "<p>Unable to locate the Game Database.</p>";
> exit();
> }
> ?>
> <style type="text/css">
> body { color: white; background: black; }
> </style>
> <p align="Center"><img src="Banner.png" width="666" height="103"
> alt="D&D Resource Page" border="0">"</p>
> <br><br><br><br>
> <form name="Login" method="Post" action="<?echo $PHP_SELF?>">
> <p align="Center">
> Login: <input type="text" name="User Name">
> Password: <input type="password" name="Password">
> <input type="submit" name="Submit" value="Submit"
> </p>
>
> </form>
>
> <?php
> }
> ?>
>
> </html>
>
>
>
> --
> PHP Database Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
--- End Message ---
--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php