Ver Mensaje Individual
  #3 (permalink)  
Antiguo 02/05/2006, 13:09
Avatar de claudiovega
claudiovega
 
Fecha de Ingreso: octubre-2003
Ubicación: Puerto Montt
Mensajes: 3.667
Antigüedad: 20 años, 6 meses
Puntos: 11
Es necesario escapar las comillas dobles (colocando \ delante de ellas) o usar comillas simples.

<html>
<head>
<title>Prueba</title>
</head>
<body>
<?php
printf ("<h1 align='center'>Prueba</h1>");
printf ("<p align='left'><a href='enlace1.php'>enlace1</a></p>");
printf ("<p align='left'><a href='enlace2.php'>enlace2</a></p>");
?>
</body>
</html>