Hi,
firstly thanks for the support this forum offers. I am almost done with my current project, all I need to do is display the database entries on 2 pages:
I have 2 connections set up to read the same database, the first page head code:
The body will then pull out the required data:
in the body code the link to the second form, links and passes through the ID of the record but the page always shows same job, which seems to be the last one entered in the database.
The site can be seen here:
http://nextmoveit.co.uk/component/option,com_chronoconnectivity/Itemid,4/
Please advise
Best regards
Alan
firstly thanks for the support this forum offers. I am almost done with my current project, all I need to do is display the database entries on 2 pages:
I have 2 connections set up to read the same database, the first page head code:
<table style="text-align: left; width: 100%;" border="0" cellpadding="2" cellspacing="2">
<tbody>
<tr>
<td style="font-weight: bold; width: 16%;">Title</td>
<td style="font-weight: bold; width: 16%;">Type</td>
<td style="font-weight: bold; width: 16%;">Industry</td>
<td style="font-weight: bold; width: 16%;">Salary</td>
<td style="font-weight: bold; width: 16%;">Location</td>
<td style="font-weight: bold; width: 16%;">View / Apply</td>
</tr>
</tbody>
</table>
The body will then pull out the required data:
<table style="text-align: left; width: 100%;" border="0" cellpadding="2" cellspacing="2">
<tbody>
<tr>
<td style="width: 16%;">{job_title}</td>
<td style="width: 16%;">{job_type}</td>
<td style="width: 16%;">{job_industry}</td>
<td style="width: 16%;">{salary_per}</td>
<td style="width: 16%;">{job_location}</td>
<td style="width: 16%;"><a href='/index.php?option=com_chronoconnectivity&connectionname=full_job_view&id={cf_id}' >View more details >></a></td>
</tr>
</tbody>
</table>
in the body code the link to the second form, links and passes through the ID of the record but the page always shows same job, which seems to be the last one entered in the database.
The site can be seen here:
http://nextmoveit.co.uk/component/option,com_chronoconnectivity/Itemid,4/
Please advise
Best regards
Alan