Forum Moderators: coopster
I am trying to display some rss feeds, I want the php script to a pick up keyword search to then display a rss feed.
I get the following error Parse error: parse error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in mydomain.com line xx
The code is as below any ideas what I am doing wrong?
<?php
$urllist="http://search.news.yahoo.com/usns/ynsearch/categories/47/index.html?p=<?=$_GET['Text']?>";
$numminitems="5";
$nummaxitems="15";
$tfont="Arial";
$tsize="1";
$tstyle="";
$tcolor="";
$dfont="Arial";
$dsize="1";
$dstyle="";
$dcolor="";
require_once("incrss.php");
?>
$urllist="http://search.news.yahoo.com/usns/ynsearch/categories/47/index.html?p=<?=$_GET['Text']?>";
To this:
$urllist="http://search.news.yahoo.com/usns/ynsearch/categories/47/index.html?p=$_GET['Text']";
Good luck!