in a cell in mysql
i have tree, car, bus, dog, apple, ocean, tire.
now i'd like to query only the words beginning with the letter T. So it should echo tree and tire.
this hasn't been successful;
<?php
mysql_connect("localhost", "Master", "pword");
mysql_select_db("db");
$letter = "t";
$user =mysql_query("SELECT * FROM Stacks WHERE keywords REGEXP '^$letter' ORDER BY keywords ")or die (mysql_error());
while($rowz = mysql_fetch_array($user)){
$keyword = $rowz['keywords'];
echo $keyword;
}
?>
it just displays "tree, car, bus, dog, apple, ocean, tire". when i want just the words beginning with t.