2
Hi,
When the first record is saved (upon creation of the album record) the value of the number of records is stored. You probably retrieved the value from posted values using $_POST (or something similar).
You can use the same value after storing the record in the database by adding it to the redirect_header function. For example:
redirect_header ("index.php?records=10", 1, ""._DBSAVE."");
The number of records can then be retrieved using $_GET.
There are of course more alternatives, like first creating the album record and in the next page retrieving the stored value of number of records from the database.
Regards,
Martijn