3v4l.org

run code in 300+ PHP versions simultaneously
<?php $row = array('status' => 'Available', 'images' => 'images', 'title' => 'title', 'author' => 'author', 'isbn' => 1234); $output = ''; $status = $row ['status'] == 'Available' ? 'success' : 'danger'; $output .= <<<EOD <div class="col-md-3 mb-4"> <div class="card h-100"> <img class="card-img-top" src="../admin/upload/$row[images]" width="50px" height="300px" alt="Image"> <div class="overlay"> <p><strong> Title : </strong>$row[title]</p> <p><strong> Author : </strong>$row[author]</p> <p><strong> ISBN : </strong>$row[isbn]</p> </div> <div class="card-body"> <a href="book_details.php?title=$row[title]&isbn=$row[isbn]"> <button type="button"class="btn btn-$status">$row[status]</button></a> </div> </div> </div> EOD; echo $output;
Output for 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.33, 8.2.0 - 8.2.29, 8.3.0 - 8.3.25, 8.4.1 - 8.4.13
<div class="col-md-3 mb-4"> <div class="card h-100"> <img class="card-img-top" src="../admin/upload/images" width="50px" height="300px" alt="Image"> <div class="overlay"> <p><strong> Title : </strong>title</p> <p><strong> Author : </strong>author</p> <p><strong> ISBN : </strong>1234</p> </div> <div class="card-body"> <a href="book_details.php?title=title&isbn=1234"> <button type="button"class="btn btn-success">Available</button></a> </div> </div> </div>

preferences:
132.6 ms | 409 KiB | 5 Q