mysql - find database rows that start with a character using PHP -
how can grab data database using mysql query rows start string, example;
$string = 'ws'; mysql_query("select * `table` `name` starts '$string'");
something above
you mean like
select * `table` `name` 'ws%'
Comments
Post a Comment