Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a PHP page which is passed 3 values from another. These are then passed into a call to a stored procedure.

The SP has an output value too of @e, it's basically a count check to see if the email address passed already exists.

$inUname = $_POST['txtUser'];
$inPword = $_POST['txtPword'];
$inEmail = $_POST['txtEmail'];

$retval = NULL;

$pdo = new PDO("mysql:dbname=$database_fw07d;host=$hostname_fw07d", $username_fw07d,    $password_fw07d);

$stmt = $pdo->prepare("CALL sp_createUser(:inUname, :inPword, :inEmail, @e)");

$stmt->bindParam(':inUname', $inUname, PDO::PARAM_STR, 40);
$stmt->bindParam(':inPword', $inPword, PDO::PARAM_STR, 100);
$stmt->bindParam(':inEmail', $inEmail, PDO::PARAM_STR, 80);

$stmt->execute();

$retval = $pdo->query('SELECT @e');

Now this value is coming back as an array and I would have expected to be able to access that value, to pass back to the main page like this,

$result = $retval[0];
print $result;

But this returns nothing.

I then found that using

do {
$results[]= $retval->fetchAll();
} while ($retval->nextRowset());
print_r($results);

gives the values

Array ( [0] => Array ( [0] => Array ( [@e] => 1 [0] => 1 ) ) )

suggesting some form of array tree?

I used

foreach($results as $res => $value){
$$res = $value;
}

print $value;

foreach($value as $val1 => $value1){
$$val1 = $value1;
}

print $value1;

foreach($value1 as $val2 => $value2){
$$val2 = $value2;
}

print $value2;

Which eventually set $value2 to the returned number.

My questions are, is this expected behaviour?

Have I made an error in my execution of this SP?

Is there a way to improve on what I have written so far?

share|improve this question
1  
Try: $results = $retval->fetchAll(); print_r($results);. What that will do is put all the results of the SELECT query into the $results variable, which will be 1 row of data containing the information you are looking for. So to get the value you are looking for, you would just use $results[0]["@e"]. – Supericy Dec 10 '12 at 11:16
That's great and worked just like you said it would. Thank you. So I guess that way I did it is just how output values are returned? Is that an array tree, or am I confusing it with something else? – 4D. Dec 10 '12 at 11:36
What you did was nearly the same, except you just added it into an extra array. So you could have done $results[0][0]["@e"] and it would have worked as well. Just a tip, when you are printing out an array, try using "<pre></pre>" tags and it will give you proper formating and make it easier to visualize. – Supericy Dec 10 '12 at 23:18

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.