3v4l.org

run code in 300+ PHP versions simultaneously
<!DOCTYPE html> <html> <body> <h1>My first PHP page</h1> <?php Name: <input type="text" name="name" value="<?php echo $name;?>"> E-mail: <input type="text" name="email" value="<?php echo $email;?>"> Website: <input type="text" name="website" value="<?php echo $website;?>"> Comment: <textarea name="comment" rows="5" cols="40"><?php echo $comment;?></textarea> Gender: <input type="radio" name="gender" <?php if (isset($gender) && $gender=="female") echo "checked";?> value="female">Female <input type="radio" name="gender" <?php if (isset($gender) && $gender=="male") echo "checked";?> value="male">Male ?> </body> </html>
Output for 5.3.0 - 5.3.28, 5.4.0 - 5.4.24
Parse error: syntax error, unexpected '<' in /in/899n3 on line 9
Process exited with code 255.

preferences:
180.04 ms | 1395 KiB | 61 Q