This commit is contained in:
Freddie Barr-Smith 2017-04-14 07:40:13 +00:00 committed by GitHub
commit cd2d1b8a91

10
fuckingretards.php Normal file
View file

@ -0,0 +1,10 @@
<?php
$result = mysqli_query($conn, "SELECT concat(courseworkTitle, deadline) AS titledeadline, courseworkID FROM Coursework;");
?>
<?php
while ($row = mysqli_fetch_array($result)) {
echo $row;
$row['whatyouwantintherow'] . $row['anotherfieldthing'];
}
?>