我已经设法存储了访问者的 IP 地址并为他们分配了一个 ID(1、2、3 等),我想向他们显示不同的消息。我到目前为止的代码是这样的:
function DisplayWelcomeMessage() {
$checkUserIDExists = mysql_query("SELECT * from Information where id = '$myid'");
if(mysql_num_rows($checkUserIDExists) < 0) {
return '<div class="Message">New visitor message</div>';
} else {
return '<div class="Message">Returning visitor message</div>';
}
}
当我使用此代码时,它始终显示回访者消息。