index.html
Gesponsorde koppelingen
PHP script bestanden
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
30
31
32
33
34
35
36
37
38
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
<html>
<head>
<title>Shoutbox</title>
<link rel="stylesheet" href="css/general.css" type="text/css" media="screen" />
<script type="text/javascript" src="./js/jquery.js"></script>
<script type="text/javascript" src="./js/shoutbox.js"></script>
</head>
<body>
<form method="post" id="form">
<table>
<tr>
<td><label>Naam</label></td>
<td><input type="text" class="text user" id="nick" /></td>
</tr>
<tr>
<td><label>Bericht</label></td>
<td><input type="text" class="text" id="message" /></td>
</tr>
<tr>
<td></td>
<td><input type="submit" id="send" value="Verzenden" /></td>
</tr>
</table>
</form>
<div id="container">
<ul class="menu">
<li>Shoutbox</li>
</ul>
<span class="clear"></span>
<div class="content">
<center><b>Laatste berichten</b></center>
<div id="loading"><img src="css/images/ajax-loader.gif" alt="Laden..." /></div>
<ul>
<ul>
</div>
</div>
</body>
</html>
<head>
<title>Shoutbox</title>
<link rel="stylesheet" href="css/general.css" type="text/css" media="screen" />
<script type="text/javascript" src="./js/jquery.js"></script>
<script type="text/javascript" src="./js/shoutbox.js"></script>
</head>
<body>
<form method="post" id="form">
<table>
<tr>
<td><label>Naam</label></td>
<td><input type="text" class="text user" id="nick" /></td>
</tr>
<tr>
<td><label>Bericht</label></td>
<td><input type="text" class="text" id="message" /></td>
</tr>
<tr>
<td></td>
<td><input type="submit" id="send" value="Verzenden" /></td>
</tr>
</table>
</form>
<div id="container">
<ul class="menu">
<li>Shoutbox</li>
</ul>
<span class="clear"></span>
<div class="content">
<center><b>Laatste berichten</b></center>
<div id="loading"><img src="css/images/ajax-loader.gif" alt="Laden..." /></div>
<ul>
<ul>
</div>
</div>
</body>
</html>