Forums

Problem with connection

potyno 20 Feb, 2013
I think I'm crazy ...
I'm trying to display a form with the list of games included with chronoform using Chronoconnectivity but I have big problems.
if I use the 'Auto Listing' everything is fine but I can not use a Header and a Footer to your liking. I also checked but I do not think there is a possibility of inserore a result of Chronoconnectivity in an article ...
There are no inter alia able to use chronoform to realize the table, would be a good solution but as mentioned, are not able.

The hamster that lives in my head and runs on the wheel is very limited.

Then I tried and tried with the 'Custom List' but unfortunately two fields do not render.

Here the screen to the result

and my Custum.
GreyHead 22 Feb, 2013
Hi potyno,

Everything in your post looks OK. If 'titulo' is showing and 'pista' and 'data' are not then there has to be a mismatch between the column names and the entries in the CC listing somewhere.

Also your count won't work the way you have it as $count is reset for each row. Add this code in the Header box:
<?php
global $count;
$count = 1;
?>
and this in the Body
<?php
global $count;
$count++;
?>
. . . <?php echo $count; ?> . . .

Bob
This topic is locked and no more replies can be posted.