Jump to content

Mysqli Fetch


mostafatalebi

Recommended Posts

Hello everybody

I have a question regarding my mysqli fetch() command. What does is do?

as the name suggest it fetches some information. I know this.

 

///////////////////////////////////////////////////////////////////////

But why in such circumstance it is not used:

(Loging in user)

 

$stmt = $mysqli_variable->prepare("SELECT * FROM users WHERE username=$user AND password=$pass");

$stmt->execute();

$stmt->store_result();

$stmt->close();

 

////////////////////////////////////////////////////////////////////

 

(for storing the ID of currently logged user)[changed areas are in red]

While in here we have it:

 

$stmt = $mysqli_variable->prepare("SELECT id FROM users WHERE username=$user AND password=$pass");

$stmt->execute();

$stmt->bind_result($id);

$stmt->fetch(); /// Why here we have fetch and in above script we don't have?

$stmt->close();

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.