News:

CPG Release 1.6.29
During HTML5 upload, keep pseudo blank code 200 messages from triggering error condition
added Russian language
correct failure to use theme menu icons in album manager
minor vulnerabilities mitigation

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 1 Guest 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