Quote:
Originally Posted by Lynne
Too many quotes in this 'line':
PHP Code:
$test .= "'.$result['output'].'"
";
|
I see what you're talking about, thanks for that. While there was some syntax error there, unfortunately it didn't solve my problem. I changed it to this:
PHP Code:
$test .= " .$result['output']. ";
I'm still getting the same error though:
Quote:
Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /home/righscom/public_html/addons/projectfanboy/vb/member.php(463) : eval()'d code on line 249
|
I thought maybe I was just calling the column in the table contained in the array incorrectly, which gave me the error, but you didn't mention that, so can I assume that if the column in the table is called
output that this would be the correct way to retrieve that data?
PHP Code:
$result['output']