PHPize Online / SQLize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
create table test (i int); insert into test values (2),(9),(7),(5);
Copy Clear
Copy Format Clear
<?php mysqli_report(MYSQLI_REPORT_ERROR | MYSQLI_REPORT_STRICT); $stmt = $mysqli->prepare("SELECT * FROM test ORDER BY ?"); var_dump($stmt, $mysqli->error); $stmt->bind_param("i", $column_no); $column_no = 1; $stmt->execute(); echo json_encode($stmt->get_result()->fetch_all());
Show:  
Copy Clear