Hi,
Really struggling to find out why it’s throwing this error. Any idea’s?
[code] <?php
$card = “SELECT * FROM fights WHERE event_id = $id”;
$result = mysqli_query($connection, $card);
while($row = mysqli_fetch_assoc($result)) {
$fighter1 = $row['fighter1'];
$fighter2 = $row['fighter2'];
$winner = $row['winner'];
$loser = $row['loser'];
$method = $row['method'];
$scorecard = $row['scorecard'];
?>
Code starts at line 111.
Thanks