RE: [backstage-developer] Accessing http://www.bbc.co.uk/programmes/a-z from PHP

2008-05-20 Thread Chris Sizemore
-developer] Accessing http://www.bbc.co.uk/programmes/a-z from PHP 2008/5/19 Paul Clifford [EMAIL PROTECTED]: Add .xml to the end of a schedule URL to get an XML representation, or .json for JSON. The format of the .xml and .json representations isn't fixed yet, but we're interested in any

Re: [backstage-developer] Accessing http://www.bbc.co.uk/programmes/a-z from PHP

2008-05-20 Thread Iain Emsley
] To: backstage-developer@lists.bbc.co.uk Sent: Monday, 19 May, 2008 8:54:57 PM Subject: Re: [backstage-developer] Accessing http://www.bbc.co.uk/programmes/a-z from PHP We updated the /programmes site today and there are some new views that might be of use... See all programmes on a service

Re: [backstage-developer] Accessing http://www.bbc.co.uk/programmes/a-z from PHP

2008-05-20 Thread Paul Clifford
Unfortunately we don't have any broadcast data for those two channels in the PIPs database at the moment. The full list of available channels can be seen in the Schedules box at http://www.bbc.co.uk/programmes I'll have to defer to other BBC people on the exact timescales but we are actively

Re: [backstage-developer] Accessing http://www.bbc.co.uk/programmes/a-z from PHP

2008-05-17 Thread Tom Scott
Try using the CURL library instead of file_get_contents for accessing external files - it's a lot more customisable, and you might be able to get some info back about why it's locking up! Cheers, Tom Brian Butterworth wrote: I wrote some code a while ago that goes though the BBC programme

Re: [backstage-developer] Accessing http://www.bbc.co.uk/programmes/a-z from PHP

2008-05-17 Thread Jonathan Chetwynd
http://www.openicon.org/get_contents.php very temporary but wfm thinks it must be a local issue... ~: Jonathan Chetwynd [EMAIL PROTECTED] http://www.openicon.org/ +44 (0) 20 7978 1764 ?php $cty=file_get_contents(http://www.bbc.co.uk/programmes/a-z;, 0, $ctx); echo $cty; ? On 17 May

Re: [backstage-developer] Accessing http://www.bbc.co.uk/programmes/a-z from PHP

2008-05-17 Thread Brian Butterworth
Interesting library.. might use it more often. Seems to work with this, but it's working with file_get_contents again! Thanks. 2008/5/17 Tom Scott [EMAIL PROTECTED]: Try using the CURL library instead of file_get_contents for accessing external files - it's a lot more customisable, and you