rss feed给出错误

时间:2015-05-22 02:24:16

标签: php mysql rss

我正在使用PDO编写带有php和mysql的rss源以从数据库中获取信息,但是收到以下错误:

Parse error: syntax error, unexpected  (T_CONSTANT_ENCAPSED_STRING) in /rss/rss.php on line 36

第36行:

$data .= "<link>"'http://localhost/gmedia/video1.php?g=.$row['g_code'].'"</link>";   // line 36

1 个答案:

答案 0 :(得分:0)

你没有正确地逃避你的字符串。阅读http://jason.pureconcepts.net/2013/05/fixing-php-errors/了解一些提示。

正确的方式:

 $data .= "<link>http://localhost/gmedia/video1.php?g=".$row['g_code']."</link>";   // line 36