Am So, den 10.07.2005 schrieb d3vnull um 12:06:
>
> According to the PHP manual it's quite normal that the above throws an error
> message, because mysqli_stmt_bind_result() expects one variable for each
> database field that you selected. If you just select a few fields from your
> database th
Hi folks,
I've got a question concerning an upgrade from mysql to mysqli using
prepared statements.
Back then wit hmysql we used something like this:
$sqlst="SELECT * FROM table WHERE itemid='$_GET[itemid]'";
$result=mysql_query($sqlst);
$row=mysql_fetch_array($result);
What we got out of this w