Create disappearing posts or messages like snapchat or facebook stories using PHP tutorial

แชร์
ฝัง
  • เผยแพร่เมื่อ 22 ต.ค. 2024

ความคิดเห็น • 17

  • @pratikbhujel
    @pratikbhujel ปีที่แล้ว +7

    Earthone, You are a true gem of TH-cam. Please Keep Providing and Thank you very very much for all of this.

  • @radfanabdulfatah8288
    @radfanabdulfatah8288 ปีที่แล้ว +2

    Welcome. You are a very, very distinguished person, you explain in an easy way, the information is delivered to the student smoothly, I thank you from the bottom of my heart... I have a request that I hope you will fulfill for me. I was very complicated with the php language, and when I got your channel right, I continued the lessons and began to love the php language. I want to explain to us the design of a news website in a professional way with a control panel such as (Wordpress).
    Thank you very much.

    • @QuickProgramming
      @QuickProgramming  ปีที่แล้ว

      alright i'll make one but in the mean time you can watch this one th-cam.com/video/4AoRVc89rBs/w-d-xo.html

    • @radfanabdulfatah8288
      @radfanabdulfatah8288 ปีที่แล้ว

      @@QuickProgramming Thank you very much. I will watch this video that you referred to, and I am waiting for you to explain a video to a distinguished news site such as the BBC or any international news site, in addition to a news ticker (the latest news) and a slider... Once again, thank you from the heart.

  • @etech.innovations
    @etech.innovations ปีที่แล้ว +1

    Great work. Your channel is very educative. 💯💯💯

  • @pldash33
    @pldash33 ปีที่แล้ว

    Definitely love this new way of deleting. Really helps a lot to make things easier. I only have one problem, do you have a way to delete an image of the post out of the folder it was sent to, I'm working on trying to do that now, and I'm super new to coding. I'm just trying not to have thousands of images in the folder after the posts were erased from the server. Thank You so much for everything you do.

    • @QuickProgramming
      @QuickProgramming  ปีที่แล้ว +1

      you can read from the database to first collect all the rows that will be deleted. Thats easy to do using the select statement you're already using to read posts, just change the greater than or less than sign to its opposite. then loop through the rows, get the link to each image each time and delete it. to delete this is the code you use:
      unlink($file_path);
      but its always better to first check if the file exists like this:
      if(file_exists($file_path))
      unlink($file_path);

    • @pldash33
      @pldash33 ปีที่แล้ว

      @@QuickProgramming, it works. Thanks again for everything you do. You are truly the king 👑 of php. Definitely showing us why php is not dead and how powerful it can be. Thank you so much 🙏.

  • @mawudzrohounnake6422
    @mawudzrohounnake6422 ปีที่แล้ว +1

    A useful tutorial
    Thank you ❤

  • @aogunnaike
    @aogunnaike ปีที่แล้ว +2

    Thanks for this 🙏

    • @QuickProgramming
      @QuickProgramming  ปีที่แล้ว

      You're most welcome and thanks for the feedback :)

  • @MindsetHome
    @MindsetHome ปีที่แล้ว +2

    Thank you sir, am happy now.

  • @ddobren
    @ddobren ปีที่แล้ว

    How to do rate limit on sending post