Good day everyone!
I was wondering how one could get this snippet of code to echo correctly please.
Please review code below.
I have tried to escape this puppy in many ways and cannot figure it out.
Could someone assist me?
Thank you kindly,
Crazycabling
<?php
if ($ticket['status'] == 'Fermé')
{
echo "<div class=\"btns\">";
// I would need this part to echo the button correctly if above status is Fermé
<a href="viewtest.php?id=<?=$_GET['id']?>&status=Réouvert" class="btn blue" style="width:400px">Réouvrir ce billet</a>
//End of part
echo "</div>";
echo 'billet fermé';
}
?>