how can i make a count list....
such as i had 5 saved form in a database...
so in chronoconnectivity it will shown value 5
Details Hit
1)Form apply 5
such as i had 5 saved form in a database...
so in chronoconnectivity it will shown value 5
Details Hit
1)Form apply 5
Hi Kayrie,
The easiest way is to add this code>
a) In the header box
b) In the body box:
c) In the footer box
Bob
The easiest way is to add this code>
a) In the header box
<?php
global $count;
?>
b) In the body box:
<?php
global $count;
$count++;
?>
c) In the footer box
There are <?php echo $count; ?> records.
Bob
Hi Kayrie,
$count is a temporary variable to count the number of results. Isn't that what you wanted?
Bob
$count is a temporary variable to count the number of results. Isn't that what you wanted?
Bob
This topic is locked and no more replies can be posted.