Hello! I do a sample of varchar data from a table like this:
$query = "SELECT * FROM words"; $res = mysql_query($query); while($row = mysql_fetch_array($res)) { echo "Номер: ".$row['he']."<br>\n"; $list = $row['he'] } Tell me how to make it so that all the data from the table is selected and each word is entered into the array separated by a space?
To make it like this:
$list = "JAVA BEANS PHP SCRIPTS SOURCE CODE JAVASCRIPT GAMES SSI IS SERVER SIDE INCLUDES BILL GATES COOKIES HTTP AUTHENT;
*if you need to manipulate only one column as a result? - Alexey Shimansky