DamForums Posted August 5, 2013 Share Posted August 5, 2013 i have managed to connect with Linkedin APi, so i can get the users details using below code. $response = $OBJ_linkedin->profile('~:(id,first-name,last-name,picture-url,email-address,phone-numbers)'); if($response['success'] === TRUE) { $response['linkedin'] = new SimpleXMLElement($response['linkedin']); after that i need to display the retrieved details into text fields like this. <table border="1"> <tr> <td>Name</td> <td><?php echo $response['linkedin']->id; ?></td> </tr> <tr> <td>first Name</td> <td><?php echo $response['linkedin']->first-name; ?></td> </tr> <tr> <td>Email</td> <td><?php echo $response['linkedin']->email-address; ?></td> </tr> </table> Id is displaying correctly, but other details are not showing. can anyone help on this. thanks in advance Link to comment https://forums.phpfreaks.com/topic/280844-display-linkedin-details-in-my-text-fields-using-php/ Share on other sites More sharing options...
AbraCadaver Posted August 5, 2013 Share Posted August 5, 2013 Depending on what $response['linkedin'] looks like, maybe this: $li = (array)$response['linkedin']; //then echo $li['first-name']; But to use it as an object (PHP vars cannot contain hyphens): echo $response['linkedin']->{'first-name'}; Link to comment https://forums.phpfreaks.com/topic/280844-display-linkedin-details-in-my-text-fields-using-php/#findComment-1443543 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.