PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
I'm haveing trouble getting this script to work. Could some one please help me, I've been stuck on this too long.
Does anyone have a better way to connect to a database and then email the people in it?
it will be a couple hundred emails, at a time, it will be basically a newsletter. there are no errors, it will echo the proceed and the date, but as for emailing the messages it does not. i have it set up to send me a test message. i'm in the database, and its not working. I'm just getting started with php so any help/ advice you could give me would be great.
a few hundred shouldnt be a problem with PHP (ive tried it and it works)
it becomes a major pani when you do 1000's and PHP max exec time fails, thus failing your site
as well as being inefficient as opposed to sockets
malcolmboston wrote:a few hundred shouldnt be a problem with PHP (ive tried it and it works)
it becomes a major pani when you do 1000's and PHP max exec time fails, thus failing your site
as well as being inefficient as opposed to sockets
Just to add it to the discussion; You can also tweak your settings and one/any of the following: max_execution_time (Maximum execution time of each script, in seconds), max_input_time (Maximum amount of time each script may spend parsing request data), memory_limit (Maximum amount of memory a script may consume).