Your script should output a XML encoded array with the following fields.
Put the jobs into an [items] element first, so all the jobs will be enclosed between and .
Putting it in an [items] element makes this code compatible with RSS and RSS2:
Array
(
[items] => Array
(
[0] => Array
(
[Company] => Company name
[Address] => 123 Front St. London
[Telephone] => 01 555 123 4568
[Website] => www.thesite.com/possibly/a/subfile.htm
[Contact] => Webster Snickle
[Email] => user@site.co.uk
[Sector] =>
[Position] => Autobiographer
[Ref] =>
[Area2] => Kent
[Area] => South East
[Salary] => £ Neg
[Description] => Job description misc info, etc.
)
[1] => Array
(
[Company] => Company name 2
[Address] => 456 Back Cr. Other city n6a1c8
[Telephone] => 01 222 343 5667
[Website] => www.anothersite.com/whatever/
[Contact] => Important persons name
[Email] => joe@domain.com
[Sector] =>
[Position] => Captian
[Ref] =>
[Area2] => Kent
[Area] => South East
[Salary] => £ Neg
[Description] => Job description misc info, etc.
)
)
)
|