I am getting the following error (warning) msg from ChronoConnectivity:
What I am trying to do is read records from a table in mySQL, display on my site and from there on enable updates or deletes.
I assume s'thing is wrong in the Body. See screenshot below:
[attachment=0]Knipsel.JPG[/attachment]
Full code below:
I'd appreciate some help....
Johan
Warning: Invalid argument supplied for foreach() in /www/v/v/c/vvckc.nl/public_html/Test1/components/com_chronoconnectivity/libraries/connection.php on line 300
What I am trying to do is read records from a table in mySQL, display on my site and from there on enable updates or deletes.
I assume s'thing is wrong in the Body. See screenshot below:
[attachment=0]Knipsel.JPG[/attachment]
Full code below:
<table style="text-align: left; width: 100%;" border="0" cellpadding="2" cellspacing="0">
<tbody>
<tr<?php if ($i % 2) echo ' style="background-color: #EBEBEB;"';?>>
<td style="width: 5%;">{edit_record} {id}</td>
<td style="width: 10%;">{datum}</td>
<td style="width: 10%;">{tijd}</td>
<td style="width: 10%;">{soort_wedstrijd}</td>
<td style="width: 10%;">{snummer}</td>
<td style="width: 10%;">{thuisteam}</td>
<td style="width: 10%;">{uitteam}</td>
<td style="width: 10%;">{scheidsrechter}</td>
<td style="width: 10%;">{thuis_organisatie}</td>
<td style="width: 5%;">{veld}</td>
<td style="width: 5%;">{kleedkamer_thuis}</td>
<td style="width: 5%;">{kleedkamer_uit}</td>
</tr>
</tbody>
</table>
<?php $i++ ?>
I'd appreciate some help....
Johan