我的语法错误在哪里,我如何加入它们

时间:2014-01-02 11:38:40

标签: php

    $tweet = $row['pledge'] $row['fname'];
{
echo "$tweet";
}

解析错误:语法错误,意外T_VARIABLE

2 个答案:

答案 0 :(得分:3)

使用concatenation operpator

  $tweet = $row['pledge'].$row['fname'];
  {
     echo "$tweet";
  }

答案 1 :(得分:0)

$tweet = $row['pledge'] . $row['fname'];

现在ECHO

echo $tweet;