Nieuw lid |
|
Hallo,
Ik ben best nieuw met PHP. Hieronder heb ik een heel klein scriptje gemaakt.
<html>
<head>
<title>
</title>
</head>
<body>
<table border ="1" cellpadding="0" cellspacing="0">
<th><a href="<?php $_SERVER['PHP_SELF']; ?>">Klant</a></th><th><a href="<?php $_SERVER['PHP_SELF']; ?>">Artikel</a></th><th><a href="<?php $_SERVER['PHP_SELF']; ?>">Prijs</a></th>
<?php
$connect = mysql_connect("Localhost", "root", "");
$db = mysql_select_db("test");
$sql_klant = "SELECT * FROM klant ORDER BY achternaam";
$resultaat = mysql_query($sql_klant) or die (mysql_error);
while ($rij = mysql_fetch_assoc($resultaat))
{
?>
<form action = "<?php $_SERVER['PHP_SELF'] ?>" name="tabel" method="get">
<?php
echo "<tr><td>". $rij['Achternaam'] . "</td>";
}
?>
<?php
$sql_artikel = "SELECT * FROM artikel ORDER BY Omschrijving && Prijs";
$resultaat2 = mysql_query($sql_artikel) or die (mysql_error);
while ($row = mysql_fetch_assoc($resultaat2))
{
echo "<td>". $row['Omschrijving'] . "</td><td>" . $row['Prijs'] . "</td></tr>";
}
?>
</table>
</body>
</html>
<html> <head> <title> </title> </head> <body> <table border ="1" cellpadding="0" cellspacing="0"> <th><a href="<?php $_SERVER['PHP_SELF']; ?>">Klant</a></th><th><a href="<?php $_SERVER['PHP_SELF']; ?>">Artikel</a></th><th><a href="<?php $_SERVER['PHP_SELF']; ?>">Prijs</a></th> <?php $sql_klant = "SELECT * FROM klant ORDER BY achternaam"; { ?> <form action = "<?php $_SERVER['PHP_SELF'] ?>" name="tabel" method="get"> <?php echo "<tr><td>". $rij['Achternaam'] . "</td>"; } ?> <?php $sql_artikel = "SELECT * FROM artikel ORDER BY Omschrijving && Prijs"; { echo "<td>". $row['Omschrijving'] . "</td><td>" . $row['Prijs'] . "</td></tr>"; } ?> </table> </body> </html>
In dit script wil ik onder de TH Koppen van de tabel een link maken. Dit heb ik ook gedaan. Als ik op de link klikt, dan moet bijvoorbeeld de kolom Klant wordt gesorteerd. Dit geldt eveneens voor artikel en prijs.
Ik denk zelf dat het te maken heeft met de GET functie, maar ik weet nu hoe ik dit moet oplossen.
Kunnen jullie mijn helpen?
|