phpmyadmin
looking for output like this [PHOTO 2]
Mysql/PHP, how to get output like this, or similar (photo 2)
$start = mysqli_query($conn, $sql);
if (mysqli_num_rows($start) > 0) {
$row = mysqli_fetch_assoc($start);
while($row = mysqli_fetch_assoc($start)) {
echo '<p name='.$row['game'].'>'.$row['game'].'</p>' ;
}
}
New contributor
HIHAWA is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.