Jump to content

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

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.