[Solved]: Question regarding query in index.php [Solved]: Question regarding query in index.php
 

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Main Menu

[Solved]: Question regarding query in index.php

Started by net, March 19, 2008, 11:27:02 PM

Previous topic - Next topic

0 Members and 2 Guests are viewing this topic.

net

Hi,

I have a question regarding this part in the index.php

        $result = cpg_db_query("SELECT count(*) FROM {$CONFIG['TABLE_PICTURES']} WHERE 1 $current_album_set AND approved='YES'");
        $nbEnr = mysql_fetch_array($result);
        $picture_count = $nbEnr[0];
        mysql_free_result($result);


What exactly does this do?

Thanks!

Nibbler

Counts the number of files in the database.

net