Gastenboek (beginners)
Auteur: thajunk - 22 februari 2005 - 16:03 - Gekeurd door: Joel - Hits: 14553 - Aantal punten: 1.50 (2 stemmen)
Uitleg
------
*Downloaden
*Uitpakken
*Config.php aanpassen
*Create tabel in je .db
*uploaden
- - - - - -
Db. tabel
- - - - - -
CREATE TABLE `test` (
`voornaam` varchar(10) NOT NULL default '0',
`email` varchar(25) NOT NULL default '0',
`bericht` text NOT NULL
) TYPE=MyISAM;
|
Code: |
- - - -
config.php
- - - -
<?
mysql_connect('localhost','//username\\','//wachtwoord\\');
mysql_select_db('//naam van de db. \\') or die (mysql_error());
?>
- - - -
index.php
- - - -
<?
include('config.php');
?>
<table border="1" width="43%" cellspacing="0" cellpadding="0" bgcolor="#808080">
<tr>
<td width="33%" align="center">Naam</td>
<td width="33%" align="center">E-mail</td>
<td width="33%" align="center">Bericht</td>
</tr>
<?php
$qLid = mysql_query("SELECT voornaam,email,bericht FROM test");
while ($aLid = mysql_fetch_assoc($qLid))
{
?>
<tr>
<td width="33%" bgcolor="#C0C0C0">
<?=$aLid['voornaam']?>
</td>
<td width="33%" bgcolor="#C0C0C0">
<a href="mailto:<?=$aLid['email']?>"><?=$aLid['email']?></a>
</td>
<td width="34%" bgcolor="#C0C0C0">
<p align="center">
<font face="Comic Sans MS" size="2">
<i>
<?=$aLid['bericht']?>
</i>
</font>
</td>
</tr>
<?
} //while afsluiten
mysql_free_result($qLid);
?>
</table>
<?
print "wil jij ook een bericht toevoegen?<br>";
print "<a href=\"berichten.php\">Bericht Toevoegen</a>";
<? include('config.php'); ?> <table border="1" width="43%" cellspacing="0" cellpadding="0" bgcolor="#808080"> <tr> <td width="33%" align="center">Naam</td> <td width="33%" align="center">E-mail</td> <td width="33%" align="center">Bericht</td> </tr> <?php $qLid = mysql_query("SELECT voornaam,email,bericht FROM test"); { ?> <tr> <td width="33%" bgcolor="#C0C0C0"> <?=$aLid['voornaam']?> </td> <td width="33%" bgcolor="#C0C0C0"> <a href="mailto:<?=$aLid['email']?>"><?=$aLid['email']?></a> </td> <td width="34%" bgcolor="#C0C0C0"> <p align="center"> <font face="Comic Sans MS" size="2"> <i> <?=$aLid['bericht']?> </i> </font> </td> </tr> <? } //while afsluiten ?> </table> <? print "wil jij ook een bericht toevoegen?<br>"; print "<a href=\"berichten.php\">Bericht Toevoegen</a>";
- - - -
berichten.php
- - - -
<?
include('config.php');
if(isset($_POST['verzenden']))
{
$voornaam = addslashes($_POST['voornaam']);
$email = addslashes($_POST['email']);
$bericht = addslashes($_POST['bericht']);
mysql_query("INSERT INTO test (voornaam, email, bericht) VALUES ('".$voornaam."','".$email."', '".$bericht."')") or die (mysql_error());
print "Je bericht is succesvol toegevoegd";
}
else
{
?>
<center>
<form action=" <?=$_SERVER['PHP_SELF']?> " method="POST">
Voornaam: <br><input type="text" name="voornaam"><br />
E-mail: <br><input type="text" name="email"><br />
Bericht: <br><textarea name="bericht" rows="5" cols="30">Typ hier je bericht</textarea><br />
<input type="submit" name="verzenden" value="verzenden">
</form> </center>
<?
}
?>
<? include('config.php'); if(isset($_POST['verzenden'])) { mysql_query("INSERT INTO test (voornaam, email, bericht) VALUES ('".$voornaam."','".$email."', '".$bericht."')") or die (mysql_error()); print "Je bericht is succesvol toegevoegd"; } else { ?> <center> <form action=" <?=$_SERVER['PHP_SELF']?> " method="POST"> Voornaam: <br><input type="text" name="voornaam"><br /> E-mail: <br><input type="text" name="email"><br /> Bericht: <br><textarea name="bericht" rows="5" cols="30">Typ hier je bericht</textarea><br /> <input type="submit" name="verzenden" value="verzenden"> </form> </center> <? } ?>
Download code (.txt)
|
|
|
Stemmen |
Niet ingelogd. |
|