Posts by Lucca Bibar • 31 points
2 posts
-
-1
votes3
answers112
viewsA: Prevent user from registering 3 times in the same week
Voce could add two boolean columns primeira_reserva and segunda_reserva in the table. When someone makes the reservation, he checks if the column primeira_reserva is true. If it is false, it makes…
-
3
votes1
answer1734
viewsQ: generate and email with pdf file attached with php
In my PHP script, I need to generate a PDF file and send it via email. I was able to send an attached file by email using phpmailer and generate a PDF in the browser using fpdf. The problem is that…