Jump to content

Noob help to extract username and password from api reply


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;

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

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