the batch template was meant to demonstrate a batch-insert.

the exact code to obtain the next attribute
rather depends on what xml parser you choose.

for example, if php's xml_parser_create is used then,
something like the following code snippet should work
within an xml_set_element_handler's start-element callback:

if ($attrs["REL"] == "next") {
    $mynext = $attrs["HREF"];
}

basically, understanding both the returned xml
and your chosen xml parser api are required.

see also:
http://www.php.net/manual/en/book.xml.php
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Base Data API" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/Google-Base-data-API?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to