This should work:
$connection = @mysql_connect($host, $user, $password);
@mysql_select_db($database);
$result = mysql_query("SELECT str_name_first FROM set01 WHERE UPPER(str_name_first) LIKE 'florence'"
while ($row = mysql_fetch_array($result))
{
foreach ($row as $column)
echo $row . "\n";
}
mysql_close($connection);
where $host is the name of the computer where the mysql server is, $user is the username used to connect to mysql, $password is the password used for that user and $database is the database to get the info from. //Daniel
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.