I am working on implementing several cloud services in one program. I have created APIs with Dropbox and Box and try to access them simultaneous. In spite of logging into both the services I am able to get details of only one account. Also I am trying to display list of services I am logged in but I am getting only one service name even at that time. I am using PHP for development.
Asked
Active
Viewed 60 times
$cloud_service = $_SESSION['cloud'];
echo $cloud_service;
$n=0;
if($cloud_service == 'dropbox') { $logged_cs[0] = $cloud_service; $n++; – Zoe Coley Oct 08 '13 at 05:42