3v4l.org

run code in 300+ PHP versions simultaneously
html> <?php //receive the data and assign them to variables $First=$_POST['firstname']; $Last=$_POST['lastname']; $tel=$_POST['tel']; $email=$_POST['email']; $product=$_POST['stationery']; $quantity=$_POST['quantity']; $total=$_POST['total']; //print out the values echo "your order details are as follows<br>"; echo "customer's first name:".$First."<br>"; echo "customer's Last name:".$Last."<br>"; echo "customer's Telephone :".$tel."<br>"; echo "customer's Email :".$email."<br>"; echo "product names:".$product."<br>"; echo "quantity ordered:".$quantity."<br>"; $price=40; $total=$quantity*$price; echo "The Total cost of your supply is:".$total."<br/>"; echo "<B> <i>Thank You!!!</i></B>";?> </body> </html>
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
html> Warning: Undefined array key "firstname" in /in/HkfEo on line 4 Warning: Undefined array key "lastname" in /in/HkfEo on line 5 Warning: Undefined array key "tel" in /in/HkfEo on line 6 Warning: Undefined array key "email" in /in/HkfEo on line 7 Warning: Undefined array key "stationery" in /in/HkfEo on line 8 Warning: Undefined array key "quantity" in /in/HkfEo on line 9 Warning: Undefined array key "total" in /in/HkfEo on line 10 your order details are as follows<br>customer's first name:<br>customer's Last name:<br>customer's Telephone :<br>customer's Email :<br>product names:<br>quantity ordered:<br>The Total cost of your supply is:0<br/><B> <i>Thank You!!!</i></B> </body> </html>
Output for 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.40, 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.31, 7.4.0 - 7.4.33
html> Notice: Undefined index: firstname in /in/HkfEo on line 4 Notice: Undefined index: lastname in /in/HkfEo on line 5 Notice: Undefined index: tel in /in/HkfEo on line 6 Notice: Undefined index: email in /in/HkfEo on line 7 Notice: Undefined index: stationery in /in/HkfEo on line 8 Notice: Undefined index: quantity in /in/HkfEo on line 9 Notice: Undefined index: total in /in/HkfEo on line 10 your order details are as follows<br>customer's first name:<br>customer's Last name:<br>customer's Telephone :<br>customer's Email :<br>product names:<br>quantity ordered:<br>The Total cost of your supply is:0<br/><B> <i>Thank You!!!</i></B> </body> </html>
Output for 7.3.32 - 7.3.33
html> your order details are as follows<br>customer's first name:<br>customer's Last name:<br>customer's Telephone :<br>customer's Email :<br>product names:<br>quantity ordered:<br>The Total cost of your supply is:0<br/><B> <i>Thank You!!!</i></B> </body> </html>
Output for 4.3.0 - 4.3.11, 4.4.0 - 4.4.9, 5.0.0 - 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17
html> Notice: Undefined index: firstname in /in/HkfEo on line 4 Notice: Undefined index: lastname in /in/HkfEo on line 5 Notice: Undefined index: tel in /in/HkfEo on line 6 Notice: Undefined index: email in /in/HkfEo on line 7 Notice: Undefined index: stationery in /in/HkfEo on line 8 Notice: Undefined index: quantity in /in/HkfEo on line 9 Notice: Undefined index: total in /in/HkfEo on line 10 your order details are as follows<br>customer's first name:<br>customer's Last name:<br>customer's Telephone :<br>customer's Email :<br>product names:<br>quantity ordered:<br>The Total cost of your supply is:0<br/><B> <i>Thank You!!!</i></B> </body> </html>

preferences:
339.78 ms | 404 KiB | 460 Q