Helo all,
I am making a database with all the deliveries of aircrafts. I used the profile page to make a list per month.
In the screenshot below you see on the left side the type of aircraft, the column next to it shows the number of that type that is delivered and in the column on the right I want all the different airlines.

In my MYSQL-database I have the following:

In the last column I would like to have (if you look at the screenshot above) the airline name and the amount that has been delivered behind it (for example: TUI Travel PLC (2x)).
I hope someone can help me with this🙂
I am making a database with all the deliveries of aircrafts. I used the profile page to make a list per month.
In the screenshot below you see on the left side the type of aircraft, the column next to it shows the number of that type that is delivered and in the column on the right I want all the different airlines.

In my MYSQL-database I have the following:

In the last column I would like to have (if you look at the screenshot above) the airline name and the amount that has been delivered behind it (for example: TUI Travel PLC (2x)).
I hope someone can help me with this🙂
Hi flyboeing,
Quick answer
In the Header box put
In the Body box put
In the Footer box put
Bob
Quick answer
In the Header box put
<?php
global $total;
$total = 0;
?>In the Body box put
<?php
global $total;
$total += $MyRow->aantal;
?>In the Footer box put
<?php
global $total;
echo $total;
?>Bob
Thanks for your help Bob!
Do you know a way to fix the second problem I have?
Do you know a way to fix the second problem I have?
This topic is locked and no more replies can be posted.
