View Single Post
Old 01-10-2003, 06:57 PM   #6 (permalink)
sde
Moderator
 
sde's Avatar
 
Join Date: May 2002
Location: us.ca
Posts: 4,505
sde is on a distinguished road
i see you seeing the html outside your php..

try this connect script:
PHP Code:
<?
$hostname
="localhost";
$mysql_login="username";
$mysql_password="password";
$database="database";

if (!(
$db mysql_connect("$hostname""$mysql_login" "$mysql_password"))){
  print(
"Can't connect.");    
}else{
  if (!(
mysql_select_db("$database",$db))) {
    print(
"Can't connect database.");
  }else{
    print(
"Connection Successful.");
  }
}
?>
sde is offline   Reply With Quote