title says it all... how can i load from query and make it split by a space and put it into an array?
sorry if you don't get it but this is the best way i can explain xD
Printable View
title says it all... how can i load from query and make it split by a space and put it into an array?
sorry if you don't get it but this is the best way i can explain xD
....?Code:$sql_result = mysql_query("SELECT myField FROM myTable LIMIT 1");
$string_with_spaces = mysql_result($sql_result,0);
$myArray = explode(" ",$string_with_spaces);
wow what a bummer of me... thanks