PHP

Quotes

<html>
<head>
<title>Hello</title>
</head>
<body>
<?php
  $name = "Joe";
  print "Hello, $name";
  print 'Hello, $name';
?>
</body>
</html>


José M. Vidal .

3 of 33