In my HtML List Box only a partial list of the data is shown. I used JSON with PHP and MYSQL to populate my listbox.
I used a "alert("Data Loaded: " + data);" to show what JSON returns and its ok all data was successfully returned, however when I look at my list box only 52 returned data shows from the 3000. ie the list stops at "A Bronx Tale"
When I try another way by initilizing the page using PHP only within my Html I do get all 3000 titles. So my list box is set up to work.
Here is my Code...
// initialize page
function init() {
$.getJSON('Reset_DVD.php', function(data) {
alert("Data Loaded: " + data);
$.each(data, function(key, movie) {
$.each(movie, function(id, title) {
$('<option />').attr('value', id).text(title).appendTo('select#dvdtitle')
});
});
});
}
Finally my Partial Html....
<select name="dvdtitle" id= "dvdtitle" size='10' ></option> </select>
My PHP Code.... "Reset_DVD.php"
<?php
include("includes/connection.php");
$final= array();
$result_reset =mysql_query("SELECT * FROM dvd ORDER BY title");
while($rowCatagory = mysql_fetch_array($result_reset)) {
$final[] = array($rowCatagory['title'] );
}
echo json_encode($final);
?>