I'm trying that my code will output like this with the pre tag:
but he give me an error:
Parse error: syntax error, unexpected 'echo' (T_ECHO), expecting ')' in D:\xampp\htdocs\basics\echo.php on line 25
And this is the code:
<?php
$levels = array(
1 => array( 'name' => 'level 1', 'desc' => 'This is the first level' ),
2 => array('name' => 'level 2', 'desc' => 'youve made it to level 2!',
3 => array('name' => 'level 3', 'desc' => 'The last level'
)
but its not working.