我有代码从 PHP 中的 MySQL 数据库中获取信息,然后我想用 strpos() 函数将 $username 变量与这些信息进行比较……但它不起作用……我该怎么办?
$username = $_GET['username'];
$connection = new DB_Database();
$res = $connection->Select();
if ($res) {
$output = "";
while ($row = mysql_fetch_array($res)) {
if (strpos((string)$row['username'], $username)) {
$output.=" " . $row["username"] . " ";
}
echo $output;