coder9 Posted July 25, 2008 Share Posted July 25, 2008 Hi again. this time i have a table again. table name: jtable columns: id and box_no now what i want is to get all value of box_no column from all records and store that into array. let say my array name is $tmp_array[]; You guys really helped me a lot. hoping that you will help me again. Thank you in advance again. Link to comment https://forums.phpfreaks.com/topic/116555-get-all-value-from-column-box_no-from-all-records/ Share on other sites More sharing options...
Xurion Posted July 25, 2008 Share Posted July 25, 2008 You can do that by simply doing a standard MySQL query: $sql = "SELECT box_no FROM jtable"; $result = mysql_query($sql); If you wanted a simple array with these values, you could use a while statement: while($row = mysql_fetch_assoc($result)){ $tmp_array[] = $row['box_no']; } Link to comment https://forums.phpfreaks.com/topic/116555-get-all-value-from-column-box_no-from-all-records/#findComment-599344 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.