Jump to content

ATLChris

Members
  • Posts

    16
  • Joined

  • Last visited

Everything posted by ATLChris

  1. Not sure what problems you are having with gmail, but I got it setup very easily using PHP oAuth (Truck) and Google's API. I have searched Google for days looking for a solution, but none of the search results I came across still worked with the exception of OpenInviter.
  2. I have always been a fan of Coda for small projects or Textmate for more complex projects. Both are for Mac.
  3. I am trying to write a script that will allow people to invite friends from their address book to my site. I already have Gmail and Yahoo working through their respective API's, but I am having major issues with Hotmail (Live). I tried using their Live API but it only outputs email hashes to match emails, it doesn't actually allow you to access your contacts. Does anyone know of a script or a way of accessing Hotmail contacts? Hotmail use to have a Contacts API, but that has been depreciated. Maybe connect through an Exchange server and scrape the contacts? Curl/scrape the website? I can't figure anything out and it has been 5 days. I am about to rip my hair out. Why doesn't dumbass Microsoft have API access to contacts anymore????
  4. The only problem with that is I need to get 3 different variables for each array option. i.e. $label_one, $type_one, $validation_one, ...
  5. I am not sure I follow. Can you give me an example of what you mean?
  6. OK, what I am trying to do is generate a dynamic variable name. I want to setup a foreach statement that will generate variable names based on an array of data. $numbers = array('one', 'two', 'three', 'four', 'five', 'six', 'seven'); foreach ($numbers as $number) { } What I need, is for a bunch of variables to be generated and filled with content. $variable_one_label = "Blah"; $variable_two_label = "Blah Again"; How can I generate the dynamic variable based on the array value?
×
×
  • 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.