Skip to content
Advertisement

MYSQL prepared statment query not matching WRITTERID with WRITTER

I am trying to query a mysql statement to give match the writterid and writter in a drop down. How should i set this up because everything looks correct?

I have already made the non-prepared statement

JavaScript
JavaScript

The expected results of this code is to show Writters name in a drop down.

Advertisement

Answer

You’re not actually preparing a query. You are assigning the result set of a query to $stmt. Instead, you should write:

JavaScript

Next, you need to use fetch to return data from a prepared statement. You can use it in a loop in the same way as you call mysqli_fetch_array. Remove your first call (as it will consume a row you want to output):

JavaScript

and replace the loop starting with:

JavaScript

with

JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement