Ver Mensaje Individual
  #1 (permalink)  
Antiguo 06/10/2007, 21:32
Neo007
 
Fecha de Ingreso: octubre-2006
Mensajes: 5
Antigüedad: 17 años, 6 meses
Puntos: 0
Problema De Redireccionamiento...

Mis estimados:

Tengo un problema,

He creado una pagina con un formulario de comentarios muy sencillo y resulta que cuando quiero probarlo me arroja el siguente error:

Warning: Cannot modify header information - headers already sent by (output started at /home/zeopccl/public_html/chilewarez/index.php:7) in /home/zeopccl/public_html/chilewarez/comentario.php on line 46

Les dejo el codigo para que lo revisen haber si alguien me puede ayudar.

Código PHP:
<?php require_once('Connections/ChileWarezcl.php'); ?>
<?php
function GetSQLValueString($theValue$theType$theDefinedValue ""$theNotDefinedValue ""
{
  
$theValue = (!get_magic_quotes_gpc()) ? addslashes($theValue) : $theValue;

  switch (
$theType) {
    case 
"text":
      
$theValue = ($theValue != "") ? "'" $theValue "'" "NULL";
      break;    
    case 
"long":
    case 
"int":
      
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
      break;
    case 
"double":
      
$theValue = ($theValue != "") ? "'" doubleval($theValue) . "'" "NULL";
      break;
    case 
"date":
      
$theValue = ($theValue != "") ? "'" $theValue "'" "NULL";
      break;
    case 
"defined":
      
$theValue = ($theValue != "") ? $theDefinedValue $theNotDefinedValue;
      break;
  }
  return 
$theValue;
}

$editFormAction $_SERVER['PHP_SELF'];
if (isset(
$_SERVER['QUERY_STRING'])) {
  
$editFormAction .= "?" htmlentities($_SERVER['QUERY_STRING']);
}

if ((isset(
$_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
  
$insertSQL sprintf("INSERT INTO contacto (usuarioWarez, comentario) VALUES (%s, %s)",
                       
GetSQLValueString($_POST['usuarioWarez'], "text"),
                       
GetSQLValueString($_POST['comentario'], "text"));

  
mysql_select_db($database_ChileWarezcl$ChileWarezcl);
  
$Result1 mysql_query($insertSQL$ChileWarezcl) or die(mysql_error());

  
$insertGoTo "index.php?id=gracias";
  if (isset(
$_SERVER['QUERY_STRING'])) {
    
$insertGoTo .= (strpos($insertGoTo'?')) ? "&" "?";
    
$insertGoTo .= $_SERVER['QUERY_STRING'];
  }
  
header(sprintf("Location: %s"$insertGoTo));
}
?><!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=iso-8859-1" />
<title>Documento sin t&iacute;tulo</title>
</head>

<body>
<form method="post" name="form1" action="<?php echo $editFormAction?>">
  <table align="center">
    <tr valign="baseline">
      <td nowrap align="right">UsuarioWarez:</td>
      <td><input type="text" name="usuarioWarez" value="" size="32"></td>
    </tr>
    <tr valign="baseline">
      <td height="107" align="left" valign="middle" nowrap>Comentario:</td>
      <td><textarea name="comentario" cols="32" rows="7"></textarea></td>
    </tr>
    <tr valign="baseline">
      <td nowrap align="right">&nbsp;</td>
      <td><input type="submit" value="Insertar registro"></td>
    </tr>
  </table>
  <input type="hidden" name="MM_insert" value="form1">
</form>
<p>&nbsp;</p>
</body>
</html>
Cabe señalar que esto lo estoy trabajando con DreamWeaver. por si sirve esa info.

Espero sus comentarios y ayudas.

atte

Neo