Re: [PHP] Help! Having trouble getting one XML field from this feed reliably

2012-02-09 Thread Adam Richardson
On Thu, Feb 9, 2012 at 9:10 AM, Yared Hufkens wrote: > I wonder why you use cURL as SimpleXML itself can load URLs: > > $vastdata = new > SimpleXMLElement('http://afe.specificclick.net/?l=32259&t=x&rnd=123456 > ',0,true); > > See http://de.php.net/manual/en/simplexmlelement.construct.php It is

[PHP] PHP-GTK: GladeXML::get_widget() doesn't find some widgets

2012-02-09 Thread Yared Hufkens
I have a Glade file with this widget: True True False False False True True 2 which is a child of a GtkVBox (errContainer), which is a chil

Re: [PHP] Help! Having trouble getting one XML field from this feed reliably

2012-02-09 Thread Yared Hufkens
I wonder why you use cURL as SimpleXML itself can load URLs: $vastdata = new SimpleXMLElement('http://afe.specificclick.net/?l=32259&t=x&rnd=123456',0,true); See http://de.php.net/manual/en/simplexmlelement.construct.php Am 09.02.2012 04:44, schrieb Rob Gould: > Can anyone tell me what I'm doin