I have an SMS script. I want it to send out multiple of the same message automatically, instead of once. Any idea of how I would do this?
What dou you mean exactly with "sending multiple messages out" and how does your sms script work? Do you want to send a message to same phone number multiple times or do you mean sending it to multiple different phone numbers?
Don't know how your script works, but you could modify it and create loop which would run x times and each time send the message.
Thank you. I know nothing about php lol. Anywhere you could show me to go to learn about these "loops"?
http://www.php.net/manual/en/control-structures.for.php Basically you enclose you script inside the "for" loop... But watch out not to break anything if you are not proficient with php, always make backup copy Example: $send_it = 5; for ($i=0; $i < $send_it; $i++) { ... the main script code goes here }