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

Link to comment
Share on other sites

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

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.