Jump to content

[SOLVED] Delete Row


fesan

Recommended Posts

Hello...

 

Can't find the error in this script.

Can anyone help me?

 

<?php

$user_name1 = !empty($_POST ['user_name1']) ? $_POST['user_name1'] : '';
$user_name2 = !empty($_POST ['user_name2']) ? $_POST['user_name2'] : '';

if($user_name1 == $user_name2){ //checks and sets the username to delete
$correct_username = $user_name1;
include("conn/conn_usr.php"); // includes the DB connection
$check_username = "SELECT * FROM $dbtable WHERE brukernavn = '$correct_username'";
$result = mysql_query($check_username) or die(mysql_error());
if(mysql_num_rows($result) > 0) { // [b]This is where it fails!![/b]
	die("Det er ingen bruker med angitt brukernavn,<br>".
	"<p>Prøv et annet navn.</p>");		
} else {
	$query_del = "DELETE FROM $dbtable WHERE brukernavn = '$correct_username'";
	mysql_query($query_del) or die(mysql_error());
}
} else {
echo "Du har tastet 2 forskjellige brukernavn"; // the two username variables are different
}

?>

 

The variables user_name1, user_name2 and correct_username all return the correct and same value...

 

Thanks!

 

Link to comment
https://forums.phpfreaks.com/topic/152997-solved-delete-row/
Share on other sites

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.