ICCSI
2014-05-19 23:57:51 UTC
I have following code to fetch data from database.
I am able to print the array, but I got HTTP 500 error when I assign the
array the value to echo the result.
I think I am missing something between array and variable.
Your help and information is great appreciated,
Iccsi,
$row = $sth->fetchAll(PDO::FETCH_ASSOC);
print_r($row);
print("\n");
$name = "{$row['MyID']}";
echo $name;
I am able to print the array, but I got HTTP 500 error when I assign the
array the value to echo the result.
I think I am missing something between array and variable.
Your help and information is great appreciated,
Iccsi,
$row = $sth->fetchAll(PDO::FETCH_ASSOC);
print_r($row);
print("\n");
$name = "{$row['MyID']}";
echo $name;