Jump to content

Noob help to extract username and password from api reply


thernes

Recommended Posts

Hi guys

 

Total noob here, so bear with me...

I am trying to build a script for something and I need to get the username and password from an api. I have managed to get the script to send the correct command and the api will then reply with: username,password. How would I proceed to get these values as;

 

$username = username

$password = password

 

?

 

thanks,

 

 

T

If the username and password are separated by a comma use explode

 

Example:

$text = 'username,password';
list($username, $password) = explode(',', $text);

echo 'Username is: ' . $username . '<br />';
echo 'Password is: ' . $password;

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.