Jump to content

Recommended Posts

Hi All

 

 

I am a bit confused on how to add $mysqli->affected_rows > 0 to a Mysqli Prepared statement, any help would be more than appreciated.

 

 

<?php 
$mysqli = new mysqli('localhost', $username, $password, $db_name); 

/* check connection */ 
if (mysqli_connect_errno()) { 
printf("Connect failed: %s\n", mysqli_connect_error()); 
exit(); 
} 

if ($stmt = $mysqli->prepare("SELECT * FROM $tbl_name WHERE phone_number=?")) { 

/* Bind our params */ 
$stmt->bind_param('s', $prefixphone); 


$stmt->execute(); 


$stmt->close(); 

/* Error */ 
printf("Prepared Statement Error: %s\n", $mysqli->error); 

} 
if ($mysqli->affected_rows > 0){ 
echo 'something here.....'; 
} 

?>
 
 
 

 

 

The above trick did not work.... My prepared function without "if ($mysqli->affected_rows > 0)" does not return any errors by the way.


Thank you,

Ben

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.