Thread Datenbank verbindung (1 answers)
Opened by nour at 2007-08-23 16:52

nour
 2007-08-23 16:52
#98572 #98572
User since
2006-11-15
108 Artikel
BenutzerIn
[default_avatar]
Hallo
auf eine Index.php seite habe ich einen Link "effekte", der an die Datenbank gebunden ist .

Code: (dl )
1
2
3
<tr>
<td class='menu_cell'><a target='_self' href="index.php?t=effects">Effekte</a></td>
</tr>



Code: (dl )
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
30
31
32
33
34
35
36
37
38
39
40
41
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/transitional.dtd">
<?php
session_start();
require_once('includes/dbconnect.php');

?>


<html>

<head>
<title>nrg db</title>
<meta http-equiv="content-type" content="text/html" charset="utf8";>
<link rel="stylesheet" type="text/css" href="styles/styles.css">
<style type="text/css"></style>
</head>

<body>


<div id = 'menu'>
<table class='menu'>
<tr>
<td class='menu_cell'><a target='_self' href="index.php?t=effects">Effekte</a></td>
</tr>



<div id = 'topic_title'>
Anleitung
</div>
<div id = "intro">
<p>Willkommen! .</p>

</div>

</body>


</html>



nun wie oben gezeigt werden keine Daten gezeigt :

beim ankliken von der Knopf effekte:

ich wolltre wissen wie verbinde ich mein knopf zur Datenbank?
Danke

View full thread Datenbank verbindung