是的,我已经完成了少量编码,但还没有弄清楚如何执行以下操作。
如果两个用户的IP地址相同,通过echo来标记。
我希望做到这一点if($user222['current_ip'] (has the same as another user)); { //do action
但我在任何地方都找不到代码......它存在吗?
我会永远感激任何帮助(如果可以的话)
我的代码如下:
`$usersearch = mysql_query ("SELECT * FROM users WHERE online = 'Online'");
$user222 = mysql_fetch_array($usersearch);`
<? if ($user222['reg_ip'] == $user222['current_ip']) {
echo "<font color='green'><b>".$user222['current_ip']."</b></font>";
} else if ($user222['reg_ip'] != $user222['current_ip']) {
echo "<font color='orange'><b>".$user222['current_ip']."</b></font>"; } else //add new code here ?>
编辑::: 我想知道两个用户是否通过 SQL 注册了相同的 IP 地址。如果有那么要附和原因。