Jump to content

pewee

New Members
  • Posts

    5
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

pewee's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Hello I need help to set up 2 things in a Javascript that is my script script> var Engines = new Array ( "/member.php?sendmessageto=189", <----- I NEED TO HAVE 10 SEC PAUSE HERE TO WAIT FOR URL TO LOAD ------> "/member.php?sendmessageto=188", <----- I NEED TO HAVE 10 SEC PAUSE HERE TO WAIT FOR URL TO LOAD ------> "/member.php?sendmessageto=187" ); function openPage (favorites) { for (i = 0; i < favorites.length; ++i) open (favorites[i]); } </script> THANKS FOR ANY HELP
  2. Hello, this are not emails but internal messages sent within the program. The program then sends emails to inform members of a new messages. The problem that I have today is that i cannot send more than ONE internal message at the time... I was trying to send one message to many members... thanks for thr help
  3. Hello, thanks for fast reply; I tried that: [code] $sendto = 189; sleep(10); $sendto = 16067; sleep(10); [/code] looks like something is missing, because I don't know why It is sending only to the last member ID "16067" not to the first "189"
  4. Thanks for the reply, [code] sleep() function ; $sendto = 189; sleep(10); $sendto = 234; sleep(10); $sendto = 2578; ... etc [/code] is that what you have in mind?
  5. I need to send internal message to more than one user simultaneously. The system is made to send «one internal message to only one user" at the time. The code used to send is: [code]$sendto = 189;[/code] when user ID is '189' , when I load the page it's working very well and sends message to member ID 189. I wanted to send simultaneously to a list of user that I have 189, 234, 2578, 6890, etc.. that list can be located on an external txt file. Each time a user will be sent a message an email is also send  by the system to inform him of a new message in his mail box. It would be cool if I can have a 10 seconds pause between the sending...  let's say [code] $sendto = 189; pause of 10sec $sendto = 234 pause of 10sec $sendto = 2578 etc... [/code] Any idea how to do that  ? I 'll appreciate any help_ Thanks
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.