如果数据不存在,我只需要能够插入一行,日期列除外,它总是不同的,所以它总是会插入一个新行,即使它不应该。
我的代码:
$postID = $_POST['postID']; //example, 817
$userID = logged_in(); //example, 2
$date = time();
mysql_query("INSERT IGNORE INTO likes SET userID='$userID', postID='$postID', date='$date'");
我希望能够做类似的事情:
mysql_query("INSERT IGNORE date INTO likes SET userID='$userID', postID='$postID', date='$date'");