Featured post

c# - Usage of Server Side Controls in MVC Frame work -

i using asp.net 4.0 , mvc 2.0 web application. project requiremrnt have use server side control in application not possibl in noraml case. ideally want use adrotator control , datalist control. i saw few samples , references in codepleax mvc controllib howwver found less useful. can tell how utilize theese controls in asp.net application along mvc. note: please provide functionalities related adrotator , datalist controls not equivalent functionalities thanks in advace. mvc pages not use normal .net solution makes use of normal .net components impossible. a normal .net page use event driven solution call different methods service side mvc use actions , view completly different way handle things. also, mvc not use viewstate normal .net controlls require. found article discussing mixing of normal .net , mvc.

xml - RSS feed created with PHP only shows the title in the feed reader -


i using following php code generate xml rss feed, doesn't seem working correctly. no short description displayed in feed reader, see title of article. also, of articles published @ same time. first time have tried setup rss feed, i'm sure i've made several stupid mistakes.

$result = mysql_query("select * blog order id desc limit 10");  $date = date(date_rfc822);  header('content-type: text/xml');  echo ("<?xml version=\"1.0\" encoding=\"utf-8\"?>\n"); echo ("<rss version=\"2.0\">\n"); echo ("<channel>\n"); echo ("<lastbuilddate>$date</lastbuilddate>\n"); echo ("<pubdate>$date</pubdate>\n"); echo ("<title>my website name</title>\n"); echo ("<description><![cdata[the description]]></description>\n"); echo ("<link>http://my-domain.com</link>\n"); echo ("<language>en</language>\n");  $ch=100; while ($a = mysql_fetch_array($result)) {     $headline = htmlentities(stripslashes($a['subject']));     $posturl = $a[perm_link];     $content = $a['post'];     $date = date(date_rfc822, $a['posted']);      echo ("<item>\n");     echo ("<title>$headline</title>\n");     echo ("<link>$posturl</link>\n");     echo ("<description><![cdata[$content]]></description>\n");     echo ("<guid ispermalink=\"true\">$posturl</guid>\n");     echo ("<pubdate>$date2</pubdate>\n");     echo ("</item>\n"); }  echo ("</channel>\n"); echo ("</rss>\n"); 

  1. are sure $a['post'] contains post?

  2. missing quotes array index in $a[perm_link];

  3. the variable store date in called $date, while in feed you're putting $date2;

  4. (does not compromise functionalities but) why did declare $ch var before loop?


Comments

Popular posts from this blog

c# - Usage of Server Side Controls in MVC Frame work -

cocoa - Nesting arrays into NSDictionary object (Objective-C) -

ios - Very simple iPhone App crashes on UILabel settext -