Need help on Grabber Script

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Need help on Grabber Script

    I know you guys are king of grabber...

    Let's say i would like to grab a content between <S01> and </S01> from the xml link below


    Any idea?

    Thanks!

    #2
    try PHP: preg_match - Manual

    "/^<S01>(.)+<\/S01>$/" pattern

    subject file_get_content(url)

    and set matches array
    PHP Code:
    $("#mfreak").find(".head brain").clone(); 
    Progress:
    Code:
    [|||___________________________] : 5%
    Output:
    Code:
    Memory limit reached, unable to complete operation.
    Support answer:
    Code:
    Try using a super uber strong mega computer to reach at least 10%.

    Comment


      #3
      Here you have it:

      $xml = simplexml_load_file("http://www.live4d.com/live4d/xml_getnumbers.xml");
      echo $xml->S01;
      mysterio.al - programming is a functional art

      Comment


        #4
        Thank you guys... It works

        Comment

        Working...
        X