zeinaK Posted May 19, 2011 Share Posted May 19, 2011 Hello, I am trying to get a list of elements from my Database and I need to save it in a JavaScript array. Here is what I've been trying to do. mysql_connect ( $dbhost, $dbuser, $dbpass)or die("Could not connect: ".mysql_error()); mysql_select_db($dbname) or die(mysql_error()); $query="SELECT idCountries, Country_Name FROM countries order by Country_Name "; $result = mysql_query ($query); $x=1; echo "<script type='text/javascript'>"; echo "var SelAry=[];"; echo "SelAry[0] = ['select', '0'];"; while($nt=mysql_fetch_array($result)) { echo "SelAry[$x]=['$nt[idCountries]', '$nt[Country_Name]']; "; $x++; } echo "</script>"; I am open to any suggestion. Thank you in advance. Quote Link to comment https://forums.phpfreaks.com/topic/236865-move-an-array-from-php-to-jscript/ Share on other sites More sharing options...
AbraCadaver Posted May 19, 2011 Share Posted May 19, 2011 Here's one way: while($row = mysql_fetch_array($result)) { $rows[] = $row; } $data = json_encode($rows); echo "var SelAry = eval('(' + '$data' + ')');"; I usually use a fetch_all() function since I need this throughout an application. Also, the way you have it you are getting an array with twice the data (numerical indexes and associative). Adjust for your needs: function mysql_fetch_all($result, $type=MYSQL_ASSOC) { $data = array(); while($row = mysql_fetch_array($result, $type)) { $data[] = $row; } return $data; } Quote Link to comment https://forums.phpfreaks.com/topic/236865-move-an-array-from-php-to-jscript/#findComment-1217596 Share on other sites More sharing options...
zeinaK Posted May 26, 2011 Author Share Posted May 26, 2011 Sorry for the late reply and thank for the help Quote Link to comment https://forums.phpfreaks.com/topic/236865-move-an-array-from-php-to-jscript/#findComment-1220767 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.