tiago cerqueira - 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 tiago cerqueira.php

  1. <?php
  2. $age =array("Joao"=>"24", "Rui"=>"27", "Mariana"=>"45","joana"=>"27","Catarina"=>"27","Bia"=>"48","Luis"=>"34","Ivo"=>"38","Antonio"=>"43","Manuel"=>"23");
  3.  
  4. foreach($age as $x => $x_value) {
  5.     echo "key=" . $x .", value=" .$x_value;
  6.     echo "<br>";
  7. }
  8. ?>
File Description
  • tiago cerqueira
  • PHP Code
  • 04 Feb-2020
  • 262 Bytes
You can Share it: