Error, Connecten Database
Bart
02/04/2007 21:56:00Hey, Ik krijg een Error mijn database enzo staat goed maar hij zegt dat ie niet goed staat
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php /* ------------------------- */
error_reporting(E_PARSE);
if(!(@mysql_pconnect("localhost","sector-1_lalala","lololol") && @mysql_select_db("sector-1_lalala"))) {
print <<<ENDHTML
<html>
<head>
<title>Blackjack CONFIG</title>
<link rel="stylesheet" type="text/css" href="style.css">
<META HTTP-EQUIV='refresh' CONTENT='60'; URL='$PHP_SELF'>
</head>
<table width=100%>
<tr>
<td class="subTitle"><b>MYSQL ERROR</b></td>
</tr>
<tr><td> </td></tr>
<tr>
<td class="mainTxt">
Onze Blackjack Database ligt er Momenteel Uit, Of is niet Geinstaleerd!</td></tr>
</table>
</body>
</html>
ENDHTML;
exit;
}
/* ------------------------- */
?>
error_reporting(E_PARSE);
if(!(@mysql_pconnect("localhost","sector-1_lalala","lololol") && @mysql_select_db("sector-1_lalala"))) {
print <<<ENDHTML
<html>
<head>
<title>Blackjack CONFIG</title>
<link rel="stylesheet" type="text/css" href="style.css">
<META HTTP-EQUIV='refresh' CONTENT='60'; URL='$PHP_SELF'>
</head>
<table width=100%>
<tr>
<td class="subTitle"><b>MYSQL ERROR</b></td>
</tr>
<tr><td> </td></tr>
<tr>
<td class="mainTxt">
Onze Blackjack Database ligt er Momenteel Uit, Of is niet Geinstaleerd!</td></tr>
</table>
</body>
</html>
ENDHTML;
exit;
}
/* ------------------------- */
?>
PHP hulp
19/11/2024 15:39:48Dennis Jongerden
02/04/2007 22:01:00Bart
02/04/2007 22:02:00Jan Koehoorn
02/04/2007 22:03:00Je geeft als tweede parameter bij de connect functie (de username) dezelfde waarde op als die je meegeeft aan de select functie (de naam van de DB). Klopt dat wel?