izoeldelta Posted February 21, 2018 Share Posted February 21, 2018 i false in Warning: mysqli_fetch_array() expects parameter 1 to be mysqli_result, boolean given in this my script code include 'koneksi.php'; // jika formulir pencarian dikirim if( $_GET ) { // script pencarian peminjaman // mengambil nilai formulir pencarian $pencarian = $_GET['pencarian']; // perintah mengambil data dari tabel peminjaman berdasarkan judul $ambil = mysqli_query( $koneksi , "SELECT * FROM transaksi WHERE id" ); // script menampilkan semua peminjaman // perintah mengambil data dari tabel peminjaman diurutkan dari terbaru }else{ $ambil = mysqli_query( $koneksi , "SELECT *, transaksi.id FROM transaksi, buku, anggota WHERE transaksi.isbn = buku.isbn AND transaksi.id_siswa = siswa.nis" ); } ?> please help :'v sorry for my bad english Quote Link to comment Share on other sites More sharing options...
Barand Posted February 21, 2018 Share Posted February 21, 2018 Don't post questions in the "Introductions" forum. Use code tags when posting code You code does not include the mysqli_fetch_array() that is giving the problem. However, you query did not work if you got a boolean (false) result. Check for mysqli errors. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.