Cita:
Iniciado por burn Gracias por su respuesta, el codigo me esta mandando el siguiente error:
Parse error: syntax error, unexpected '<' in C:\inetpub\vhosts\direccion\httpdocs\enviar.php on line 35
el codigo lo puse asi
<?php
contenido
<meta http-equiv='refresh' content=0; url='Index.htm'>
?>
saben por que mem manda ese error?
Gracias de antemano!
Saludos, El error se debe a que el código que copiaste es un meta tag, y va entre <head> y </head> y tu lo pusiste en el php, deveria verse algo así:
Código HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<META HTTP-EQUIV="Refresh" CONTENT="7;URL=http://www.tupagina.com/index.html">
<title>Send Pledge</title>
<style type="text/css">
.style1 {
color:#0000FF;
font-weight: bold;
}
</head>
<body>
<p> </p>
<?php
////////////////////Aqui va tu contenido//////////////
?>
</body>
</html>