Jump to content

problem: session_start() [function.session-start]


alejandron

Recommended Posts

hello, i have a problem,

 

my web show this error:

 

Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at /home/profile/public_html/profile/carpeta/list.php:63) in /home/profile/public_html/profile/conect.php on line 2

 

 

it is the code for conect.php

<?php
session_start();
$_SESSION['Titulo']="title";
$strUsuario=$_REQUEST['usuario'];
$strContrasena=$_REQUEST['contrasena'];
//echo "Usuario: ".$strUsuario." ".$strContrasena. "<br>";
if(($strUsuario!="")||($strContrasena!="")){
$conn=mysql_connect("localhost","dates","dates");
$bd=mysql_select_db("dates",$conn);
$sql = "SELECT id FROM aso WHERE usuario='".$strUsuario."' AND password='".$strContrasena."'";
//echo $sql. "<br>";
$orden_fecha = mysql_query($sql, $conn) or die(mysql_error());
$result = mysql_fetch_assoc($orden_fecha)or die("errores");
$total = mysql_num_rows($result);
//echo "total: ".$total. "<br>";
//if($total!=0){
	$_SESSION['usuario']=$result['id'];
	//echo "[".$_SESSION['usuario']. "]";
//}
}else{
header("Location: ../index.php");
}
?>

 

thanks for the help

thanks, i solution all problems but only have 1

 

is this:

Warning: Cannot modify header information - headers already sent by (output started at /home/user/public_html/subdomain/index.php:4) in /home/user/public_html/subdomain/conectar.php on line 22

 

and the conectar.php

 

<?php
session_start();
$_SESSION['Titulo']="title";
$strUsuario=$_REQUEST['usuario'];
$strContrasena=$_REQUEST['contrasena'];
//echo "Usuario: ".$strUsuario." ".$strContrasena. "<br>";
if(($strUsuario!="")||($strContrasena!="")){
$conn=mysql_connect("localhost","dates","dates");
$bd=mysql_select_db("dates",$conn);
$sql = "SELECT id FROM aso WHERE usuario='".$strUsuario."' AND password='".$strContrasena."'";
//echo $sql. "<br>";
$orden_fecha = mysql_query($sql, $conn) or die(mysql_error());
$result = mysql_fetch_assoc($orden_fecha)or die("errores");
$total = mysql_num_rows($result);
//echo "total: ".$total. "<br>";
//if($total!=0){
	$_SESSION['usuario']=$result['id'];
	//echo "[".$_SESSION['usuario']. "]";
//}
}else{
header("Location: ../index.php"); //<<<<------  line 22
}
?>

 

thanks for the help

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.