Jump to content

Recommended Posts

Hi. I am relatively new to PHP.

I'm trying to make a user authentication, and sending the user to another page if succeeded, with the following code:

 


<?php
include ('../conexion.php');
 
$nombreUsuario = $_POST['nombreusuario'];
$password = $_POST['password'];
 
var_dump($nombreUsuario);
var_dump($password);
 
$consultaAdmin= "SELECT * FROM usuarios WHERE nombre_usuario = '$nombreUsuario' AND password = '$password' AND tipo = 'admin'";
$resultadoAdmin = mysqli_query($conn , $consultaAdmin);
$cantidad= mysqli_num_rows($resultadoAdmin);
 
if($cantidad==1) {
header("location:listado_recetas.php?bienvenida=si");
}else {
header("location:index.php?error=si");
}
?>

 

I am getting this error: 

 

string(8) "brsastre" string(10) "igor123123" 

Warning: Cannot modify header information - headers already sent by (output started at /Applications/MAMP/htdocs/recetario/admin/validar.php:7)...

 

If I remove var_dump's it works just fine.

 

Why is this happening?

Link to comment
https://forums.phpfreaks.com/topic/299626-cannot-modify-header-information/
Share on other sites

Once you echo anything, you cannot set any headers or sessions.  Do all your work first, and then display content.  Even a simple empty space is too much.

 

PS.  You are not escaping your SQL.  Recommend using prepared statements all the time until you know when you can do differently

Try removing/commenting out the vardumps. As Notion said, you can't send headers after you have output something to the page. Also make sure there isn't even a space before your PHP tags, or any HTML tags above it. 

 

Those vardumps look like the culprits though.

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.