Ver Mensaje Individual
  #6 (permalink)  
Antiguo 29/01/2008, 15:04
Avatar de helder
helder
 
Fecha de Ingreso: agosto-2007
Ubicación: Colombia
Mensajes: 50
Antigüedad: 16 años, 9 meses
Puntos: 1
Re: Como para redirigir a una pagina...

en tu caso puedes utilizar esto <meta http-equiv="refresh" content="1;URL=.tupaginaredireccionar.php"> el 1 es el tiempo y tupaginadireccion.php es la pagina que quieres que te carge te quedaria algo asi

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Sistema de Capturas de Noticias CCP</title>
</head>

<body>
<?php
$fuente1=$_POST['fuente'];
$tipo1=$_POST['tipo'];
$autor1=$_POST['autor'];
$seccion1=$_POST['seccion'];
$articulo1=$_POST['articulo'];
$texto1=$_POST['texto'];
$date1=date("Ymd");

include("new_con_sql_server.php");
$sql=("INSERT INTO Sintesis_Prensa(news_fuente,news_autor,news_seccio n,news_tipo,news_art,news_texto,news_fecha)
VALUES ('".addslashes($fuente1)."', '".addslashes($autor1)."','".addslashes($seccio n1) ."', '".addslashes($tipo1)."','".addslashes($articul o1) ."','".addslashes($texto1)."', '".addslashes($date1)."')");
mssql_query($sql);
mssql_close($conectID);
?>
<meta http-equiv="refresh" content="1;URL=.tupaginaredireccionar.php">
</body>
</html>
mas informacion sobre esta etiqueta http://www.html-reference.com/META_httpequiv_refresh.htm