Details |
Last modification |
View Log
Rev |
Author |
Line No. |
Line |
6 |
kaklik |
1 |
<?php
|
|
|
2 |
$MySqlHostname = "localhost";
|
|
|
3 |
$MySqlUsername = "chaosdell";
|
|
|
4 |
$MySqlPassword = "sesvul";
|
|
|
5 |
$MySqlDatabase = "myphptag";
|
|
|
6 |
$ServerConnect = mysql_connect("$MySqlHostname","$MySqlUsername","$MySqlPassword")or die ("Problem:Couldn't connect to MySQL Server.");
|
|
|
7 |
$DatabaseConnection = @mysql_select_db("$MySqlDatabase", $ServerConnect)or die("Problem: Couldn't select the $MySqlDatabase Database.");
|
|
|
8 |
?>
|