i was wondering how you would make a variable from a row in a mysql table like the example below:
Table
Row1, Row2, Row3
name1, lastname1, 1
name2, lastname2, 0
name3, lastname3, 1
name4, lastname4, 1
name5, lastname5, 0
name6, lastname6, 1
is it possible to make an array that goes in array(name1, name3, name4, name6)? where all of them have 1 in row3.
thanks for any replys in advanced!