Notice: Undefined index: id in /home/i296429/domains/i296429.iris.fhict.nl/public_html/snap/page/dailyScreenSubmit.php on line 42
Het zal we heel erg simpel zijn...
<?php
$id = $_GET['id'];
if(isset($_GET['id']))
{
$result = mysqli_query($con, "SELECT * FROM temp WHERE id = '$id' ORDER BY id DESC");
while($row = mysqli_fetch_array($result))
{
echo "<img class='photo' src='../".$row['path']."' height='100'/>";
}
}
?>