简体   繁体   中英

inserting record into mysql table if column count value is 2

Below is code for count record for today's date and inserting into database if value is not more than two per day.now problem is I want to insert into database if count for today is below 2.

$user_ip = getenv('REMOTE_ADDR');
$geo = unserialize(file_get_contents("http://www.geoplugin.net/php.gp?ip=$user_ip"));
$city = $geo["geoplugin_city"];
$region = $geo["geoplugin_regionName"];
$img = $_POST['img'];
$amount = 5;

$sql = "SELECT COUNT(*) FROM `daily_uploads` WHERE DATE_FORMAT(`date`, '%Y-%m-%d') = CURDATE()";

$result = $conn->query($sql);

if ($result->num_rows > 2) {

    echo"already exist";
    echo "Error: " . $sql . "<br>" . $conn->error; 


} else {


    $sql = "INSERT INTO `daily_uploads` (img, geoplugin_city, geoplugin_regionName, amount)
   VALUES ('$img', '$city', '$region','$amount')";
         // echo "success";
}

You have forgotten to execute the insert $sql string, you can do it this way:

if ($conn->query($sql)) {
     echo ('success');
} else {
     echo ('error');
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM