Bu 12:30 ve ben 9 saat düz için kodlama edilmiştir. Ben gerçekten bu projenin yapılması gereken, ancak MySQL benim tarihine karıştırıyor. Benim için bu pasajını incelemek ve neyin yanlış olduğunu öğrenmek eğer görebilir miyim?
PHP/MySQL Query
$q = $this->db->query("SELECT * FROM bans WHERE ip='".$ip."'");
Aşağıdaki hatayı dönen tutar ...
MYSQL Error [Oct 6th, 2010 11:31pm CDT]
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '* FROM bans WHERE ip='206.53.90.231'' at line 1 (1064)
Ben sorgu ile yanlış bir şey görmüyorum. Ben bile ama boşuna ile değişken $ip dahil olmak üzere farklı yöntemler denedim.
EDIT:
Just to add in here, the ip column in my database is a varchar(255).
EDIT 2:
Here is the whole affected code. Keep in mind that this is all in a class. If I'm missing something, let me know.
Line from another Function
if($this->isBanned($_SERVER['REMOTE_ADDR'])===true) { return json_encode(array('error'=>'You are banned from this ShoutBox.')); }
Affected Function
function isBanned($ip) {
$q = $this->db->query("SELECT * FROM bans WHERE ip='".$ip."'"); $num = $this->db->affected_rows;
if($num>0) { $row = $this->db->fetch_array($q); if(($row['expires'] < time()) && ($row['expires'] !== 0)) { $this->unbanUser($ip,'internal'); return false; } return true; } return false;
}
unbanUser function
function unbanUser($ip,$t='box') {
$q = $this->db->query("SELECT * FROM bans WHERE ip='".$ip."'"); $num = $this->db->affected_rows; if($num>0) { $q = $this->db->query("DELETE * FROM bans WHERE ip='".$ip."'");
return (($t=='box') ? json_encode(array('status'=>'removed')) : true); } else { return (($t=='box') ? json_encode(array('error'=>'Unable to locate the user.')) : true); }
}