I have a mysql table with column "name". in this name i have multiple names, for example id = 1 , and the name = "Ford","Ferrari","Audi","Wolks"
so in id->1 there is multiple names in column "name" and I want all these names in array format. like this below -->
$name = $row['name']; // fetching data from mysql
$show = array ($name);
echo "I like " . $show[0]."<br>";
echo "I don't like " . $show[1]."<br>";
So that I can echo only specific name from unique id..
I hope you're getting what I'm trying to solve.. Thank You.. :)