I have a database with rows having actors name in it example
row1 row2
movie1 actor1,actor2,actor3
movie2 actor2
movie3 actor1,actor3,actor4,actor6
now i want to display a list of actors in one page with no repeat actor in it .. is it possible ... output should be
actor1
actor2(no repeate)
actor3
actor4
here wt was i trying
function actors(){
global $host, $dbname, $user, $pass;
$DBH = new PDO("mysql:host=$host;dbname=$dbname", $user, $pass);
$STH = $DBH->prepare("SELECT DISTINCT actors FROM movies");
$STH->execute();
$STH->setFetchMode(PDO::FETCH_ASSOC);
return $STH;
}
$STH = actors();
while (($row = $STH->fetch()) !== false) {
echo $row['actors'].'</br>';
}
but this dont work ... please help Edit I am getting output
actor1,actor2,actor3
actor2
actor1,actor3,actor4,actor6