How to restrict user to upload only three images in a month using PHP/MySQL

后端 未结 3 1876
长发绾君心
长发绾君心 2021-01-25 04:40

I am working on PHP. My question is How can restrict a user can upload only three images in a month.

My Mysql Database table --

CREATE TABLE `images`          


        
3条回答
  •  盖世英雄少女心
    2021-01-25 05:16

    The basic idea is to count all images uploaded in the given month by given user, like:

    SELECT COUNT(*) FROM `images` WHERE `user_name` = ? GROUP BY MONTH(`date`);
    

    If the query above returns 3, you can prevent the upload.

提交回复
热议问题