Posts by Francisco Eduardo • 31 points
2 posts
-
0
votes1
answer89
viewsA: Problem with Phpmailer sending emails
You need to check the time required to send the email. By default PHP sets (in PHP.ini) 30 seconds, if you spend that time, the server cuts the connection to the client, freeing the server for new…
-
3
votes3
answers155
viewsA: How do I play an input value without submitting a form or button
It is not possible to do so. The PHP interpreter will be executed at the time of the browser request. You need to understand that there are two actors: server and client. The server is responsible…