$tweet = $row['pledge'] $row['fname'];
{
echo "$tweet";
}
解析错误:语法错误,意外T_VARIABLE
答案 0 :(得分:3)
使用concatenation operpator
$tweet = $row['pledge'].$row['fname'];
{
echo "$tweet";
}
答案 1 :(得分:0)
$tweet = $row['pledge'] . $row['fname'];
现在ECHO
echo $tweet;