Careers
[insert_php]
// The rss link provided by the People app
$url=”https://psioxus.peoplehr.net/Pages/JobBoard/CurrentOpenings.aspx?o=d166c4db-4d02-4dfd-8f8e-c13735c34eb1″;
//the XML file load
$file=simplexml_load_file($url);
$vacancies=$file->channel->item;
//Cicle trough each vacancy and display it
for($a=0;$a<count($vacancies);$a++)
{
echo’
‘.$vacancies[$a]->title.’ |
Closing Date: ‘.$vacancies[$a]->closingdate.’ |
‘;
}
[/insert_php]
Comments are closed.