De code is:
<center><style>
th {
font-size:25px;
font-family:arial;}
</style><?php include 'style.css'?><?php
{ if(isset($_GET['id']))
$id = intval($_GET['id']);
} include "style.css";
if(isset($_GET['club']))
{ $club = $_GET['club']; }
$host = "localhost";
$user = "root";
$pass = "superbart";
$db = "webshop";
$con=mysqli_connect($host, $user, $pass) or die ("Unable to connect!");
mysqli_select_db($con, 'webshop') or die ("Unable to select database!");
$query = "SELECT * FROM winkelwagen WHERE user_id=$id ORDER BY productnaam ASC";
$result = mysqli_query($con,$query) or die ("Error in query: $query. ".mysqli_error());
if (mysqli_num_rows($result) > 0) {
echo "<div class='tabelle'><table height=85px width=300px>";
echo "<tr><th colspan=4><center><b><i>Je winkelwagen:</center><i></b></th></tr>";
while($row = mysqli_fetch_array($result)) {
echo "<td><b><center><img src='" . $row['productnaam'] . ".jpg'class='image2'/></center></b>";
echo "<b><center>".$row['productnaam']."</center></b>";
echo "<b><center>€".$row['prijs'].",-</center></b></td>";}
echo "</table></div>";}
else { echo "Je winkelwagen is leeg!"; }
mysqli_free_result($result);
mysqli_close($con);
?></center>