how to extract substring from a string? Programming Software Development by ansari.wajid … stored in a variable, say myString= <RssFeeds<link>http://www.codeguru.com/icom_includes/feeds/…<description>something</description></RssFeeds><RssFeeds><link>http://lifehacker.com/index… <description>something</description> </RssFeeds> I want to extract the text between <… Re: how to extract substring from a string? Programming Software Development by vuyiswamb …example code [code]String myString = @"<RssFeeds<link>http://www.codeguru.com/icom_includes/feeds…;description>something</description></RssFeeds><RssFeeds><link>http://lifehacker.com…; <description>something</description> </RssFeeds> "; MessageBox.Show(myString.Substring(15, 64… Login to yahoo.com by providing username and password by jsp Programming Web Development by Swetadri … jsp form and I have to retreve the url of rssfeeds which I have subscribed by My Yahoo. I am not… also dont know how to get list of urls of rssfeeds subscribed by My Yahoo. Please help me. The following is… I Need Help Please. Adding PHP Code To My Site. Programming Web Development by A Monkeys Uncle … which is within a div tag: <!--#include virtual="/rssfeeds.php" --> D) Nothing happened. Now this is where… help needed with cURL / XPATH / PHP Programming Web Development by rajad2010 …="View RSS Deal Alerts section" href='/content/help/rssfeeds.asp' >Deal Alerts via</a></div… RSS Directory list Digital Media Digital Marketing Search Engine Strategies by SelinaMac … 2rss.com popdex.com search4rss.com yenra.com shas3.com rssfeeds.com feedminer.com feed-directory.com everyfeed.com easyrss.com… Re: A mailing list Programming Web Development by cohen There is the RSS host.... they are for big places... and might be good for you... [url]http://www.rssfeeds.com/[/url] And a quick [URL="http://www.google.com.au/search?q=free+mailing+list&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-US:official&client=firefox-a"]google search[/URL] found a few... Hope this helps :) Re: web service in php2 Programming Web Development by cuonic Try out the feeds made available by UEFA : http://www.uefa.com/news/rssfeeds/index.html Re: how to extract substring from a string? Programming Software Development by nvmobius Use a System.Text.RegularExpressions.Regex object. [code] Regex linkRegex = new Regex(@"<link>\s*(?<link>[^<]+)\s*</link>", System.Text.RegularExpressions.RegexOptions.Compiled); Regex titleRegex = new Regex(@"<title>\s*(?<title>[^<]+)\s*</title>", System.Text.… Re: I Need Help Please. Adding PHP Code To My Site. Programming Web Development by pc2forum you will have to add the red line in ur source file where ur calling the rssfeeder function Re: I Need Help Please. Adding PHP Code To My Site. Programming Web Development by A Monkeys Uncle Where exactly is my "source file.."? Thanks in advance. I add it to the php code I pasted above? And if so, where? Re: I Need Help Please. Adding PHP Code To My Site. Programming Web Development by pc2forum i mean u just need to add the red line which u have mention in ur question above to ur php.ini ie config file of php on the webserver. Re: I Need Help Please. Adding PHP Code To My Site. Programming Web Development by A Monkeys Uncle Yes, I need to kknow where that file is please. Thanks. Re: I Need Help Please. Adding PHP Code To My Site. Programming Web Development by A Monkeys Uncle Sorry if I didn't mention this as well. This is a free hosted geocities site, it's all html. So that's why I need to add the red text (above), I just don't know where to add it. Re: I Need Help Please. Adding PHP Code To My Site. Programming Web Development by pc2forum sorry sir, since the site is on geocites u can not do anything because the server control is not on ur hand then just forget it and try using some other way. or if can tell me what exactly want then i may help u better. Re: I Need Help Please. Adding PHP Code To My Site. Programming Web Development by A Monkeys Uncle I'm trying to get the code above to generat RSS feeds to my geocities website. Now, that said, I have a professional domain as well. [url="http://www.fingerskills.com"]www.fingerskills.com[/url] But my brother hasn't given me access to updating this yet. And I haven't updated the site with this html code: [url="http://www.… Re: I Need Help Please. Adding PHP Code To My Site. Programming Web Development by A Monkeys Uncle Geocities does support XML but I can't use Apache. Anyone? Re: I Need Help Please. Adding PHP Code To My Site. Programming Web Development by A Monkeys Uncle I was told to do this: "Just paste the JavaScript code into the source code of the html page" Where exactly do I paste it? Re: I Need Help Please. Adding PHP Code To My Site. Programming Web Development by digital-ether [QUOTE=A Monkeys Uncle]I was told to do this: "Just paste the JavaScript code into the source code of the html page" Where exactly do I paste it?[/QUOTE] HI "a monkeys uncle" :) Your first post, you include a bit of php: <?php $olderror_reporting =error_reporting(0); include ("http://www.rssfeedreader.com/… Re: I Need Help Please. Adding PHP Code To My Site. Programming Web Development by A Monkeys Uncle Thank you. I got it to work. All I did was copy and pasted the java script into a page, and made sure the code (as a .txt) was uploaded to the root folder of my site. Re: I Need Help Please. Adding PHP Code To My Site. Programming Web Development by digital-ether awesome... :) Re: I Need Help Please. Adding PHP Code To My Site. Programming Web Development by robmaag Hi, The problem with rss feeds on a geocities website is that you have no control of the server. In other words, you need to have a hosting company have php installed and have the ability to edit php code and load that up to the server. In adition, you need to have several php add ons like curl, etc. Try this hosting co. that I found: [… Re: help needed with cURL / XPATH / PHP Programming Web Development by rajad2010 too daunting guys? Re: help needed with cURL / XPATH / PHP Programming Web Development by network18 not yet looked into HTML of the title and specification, but I don't find anything wrong with the price's node with the class name as 'details-subprice'. Just try to change the double quotes to the single quotes for the class name as - [CODE]$xpath->query('//div[@class='details-subprice']')[/CODE] Re: help needed with cURL / XPATH / PHP Programming Web Development by rajad2010 i tried but get Parse error: syntax error, unexpected T_STRING in on line 90. Re: help needed with cURL / XPATH / PHP Programming Web Development by pritaeas [QUOTE=rajad2010;1092958]i tried but get Parse error: syntax error, unexpected T_STRING in on line 90.[/QUOTE] [code] $xpath->query('//div[@class=\'details-subprice\']') [/code] Re: help needed with cURL / XPATH / PHP Programming Web Development by network18 [QUOTE=pritaeas;1092960][code] $xpath->query('//div[@class=\'details-subprice\']') [/code][/QUOTE] Good catch..!! Re: help needed with cURL / XPATH / PHP Programming Web Development by network18 I think the $prod_spec_nodes got wrong after [CODE]//html/body/table/tbody/tr/td/table[2]/tbody/tr/td[3]/div[2]/table/tbody/tr/td[2][/CODE] this, because the table inside this <TD> only has single <TR> and 'tr[2]' can not be found. Check if its the below <TD> i meant and the td[2] from your xpath expression as below - [CODE]<… Re: help needed with cURL / XPATH / PHP Programming Web Development by rajad2010 thank you for the replies guys, let me try these and i'll come back to you. thanks for taking time out to help. Re: help needed with cURL / XPATH / PHP Programming Web Development by rajad2010 okay so the backslashes didn't make any difference. still trying different things.