Jump to content

Zomie

New Members
  • Posts

    3
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

Zomie's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Is there anything built out there to send an instant message from a php page, hopefully via yahoo, msn, aim, and icq? I found bluetoc http://www.therisenrealm.com/scripts/bluetoc, this was designed mainly as a bot though. I am just looking for a way to transmit data from a php page to instant messager account, not setting up a whole bot. ICQ used to have email addresses attached to it but it looks like they stopped that service. Does anyone have any suggestions?
  2. THAT WORKED, I just spent the last 9 hours trying to figure that damn thing out. Grrr thanks alot for the help! 
  3. I have a an array that uses a timestamp as the key: [code] Array (     [1164606003] => Array         (             [1] => 123                        [2] => 456             [3] => 789         )     [1164604202] => Array         (             [1] => 789             [2] => 456             [3] => 123 ) [/code] I would like to do a replace on the key so it looks like this: [code] Array (     [1] => Array         (             [1] => 123                        [2] => 456             [3] => 789         )     [2] => Array         (             [1] => 789             [2] => 456             [3] => 123 ) [/code] While maintaining its order, the only php functions I have found to replace the key comes with sort, which changes the order of the array. Is there a function I am missing or an easy way to do this?  I apoligize I am fairly new to php, most of my background is in ColdFusion.
×
×
  • 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.