Variables y comentarios

variables

<!DOCTYPE html>
<html>
<head>
	<title>Ejemplo</title>
</head>
<body>
<?php

$pcsolucion = "JoseManuelMoreno"; //Así establecemos una variable

echo $pcsolucion;

?>
</body>
</html>

 

va