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

News:

CPG Release 1.6.28
added submissions from {406man}
cleaned up a few PHP (8.4) deprecations
fixed PHP deprecation in calendar
removed security vulnerability
(please upgrade when possible)

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