< Previous - Index - Next >
What will the following php display in the browser?
<html> <head> <title>PHP Quick Quiz 1</title> <head> <body> <?php $w = '<ol>'; $x = '<li>'; $y = '</li>'; $z = '</ol>'; echo "$w$x aaa $y$x bbb $y$x ccc $y$z\n"; ?> <body> <html>
Answer