No tengo problema en poner todo el codigo
Código PHP:
$query = "SELECT * FROM peliculas LIMIT " . $page_first_result . ',' . $results_per_page;
$result = mysqli_query($conn, $query);
while ($row = mysqli_fetch_array($result)) {
$item = $row['titulo'] . $row['genero'];
echo $item;
}
Código PHP:
[
{
id: "1",
off_line: "0",
},
id: "2",
off_line: "0"
}
Código PHP:
while ($row = $result->fetch_assoc()) {
$item = $row;
$json = json_encode($item, true);
echo $json;
}
Gracias