kontrol,
i bu tablo var
tablename: reports
id (AI)
content (varchar),
contentID (int),
checked (tinyint)
if (isset($_GET['reportPost'])){
$query = mysql_query("select * from reports where contentID = $_GET[reportPost]");
$report = mysql_fetch_assoc($query);
if (!mysql_num_rows($query) && $report['checked'] == 0) {
echo 'There is already a pending report on this object.';
} else {
header("Refresh: 2; url=showthread.php?id=$id");
echo '<div class="successMsg">Thanks for your report!</div>';
mysql_query("insert into reports...");
}
}
Ne ben bu kod ile elde etmek istediğiniz gidecekseniz zaten contentID = $_GET[reportPost] ve olan raporlar halinde bir rekor checked = 0 I dont bu yürütmek istiyor. Yukarıdaki kod bunu alışkanlık.
Bazı yardım kadar appriciated :)