hi all...
i'm doing a job site and i want to view jobs from another jobsites like http://www.indeed.co.in/ on my website using xml feed.
i dont know how to implelement that .......
pls help me to do that... tnx in advnc...

Recommended Answers

All 3 Replies

use Html frames ..

You can use SimpleXML:

<?php

    $link = file_get_contents('http://remote.tld/file.xml');
    $xml = simplexml_load_string($link);
    print_r($xml);

This will return an object, that you can use as example: echo $xml->totalresults;

No need for frames, they have an API. Create an account and read the documentation.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.