tst - PHP Online

Form of PHP Sandbox

Enter Your PHP code here for testing/debugging in the Online PHP Sandbox. As in the usual PHP files, you can also add HTML, but do not forget to add the tag <?php in the places where the PHP script should be executed.



Your result can be seen below.

Result of php executing





Full code of tst.php

  1. <?php<!DOCTYPE html>
  2. <html>
  3. <head>
  4.   <title>Athletic Brand</title>
  5.   <link rel="stylesheet" type="text/css" href="style.css">
  6. </head>
  7. <body>
  8.   <header>
  9.     <h1>Athletic Brand</h1>
  10.     <nav>
  11.       <ul>
  12.         <?php
  13.           $pages = array('Home', 'Shop', 'About', 'Contact');
  14.           foreach($pages as $page) {
  15.             echo '<li><a href="#">'.$page.'</a></li>';
  16.           }
  17.         ?>
  18.       </ul>
  19.     </nav>
  20.   </header>
  21.   <main>
  22.     <h2>Welcome to Athletic Brand</h2>
  23.     <p>We offer a wide range of high-quality athletic apparel and equipment for all your sporting needs. Browse our selection of gear for running, basketball, soccer, and more.</p>
  24.     <div class="featured-products">
  25.       <h3>Featured Products:</h3>
  26.       <?php
  27.         $products = array(
  28.           array('Running Shoes', 'running-shoes.jpg', 'Our running shoes are designed for comfort and performance, with features like breathable mesh uppers and responsive cushioning.'),
  29.           array('Basketball Jersey', 'basketball-jersey.jpg', 'Represent your team in style with our high-quality basketball jerseys. Made with moisture-wicking fabric to keep you cool and dry.'),
  30.           array('Soccer Ball', 'soccer-ball.jpg', 'Our soccer balls are made with durable materials and a balanced construction for a true, consistent flight.')
  31.         );
  32.         foreach($products as $product) {
  33.           echo '<div class="product">';
  34.           echo '<img src="'.$product[1].'" alt="'.$product[0].'">';
  35.           echo '<h4>'.$product[0].'</h4>';
  36.           echo '<p>'.$product[2].'</p>';
  37.           echo '<button>Buy Now</button>';
  38.           echo '</div>';
  39.         }
  40.       ?>
  41.     </div>
  42.   </main>
  43.   <footer>
  44.     <p>Copyright 2021 Athletic Brand</p>
  45.     <ul>
  46.       <li><a href="#">Terms of Use</a></li>
  47.       <li><a href="#">Privacy Policy</a></li>
  48.     </ul>
  49.   </footer>
  50. </body>
  51. </html>
  52.  
  53.  
File Description
  • tst
  • PHP Code
  • 05 Jan-2023
  • 1.81 Kb
You can Share it: