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

News:

CPG Release 1.6.27
change DB IP storage fields to accommodate IPv6 addresses
remove use of E_STRICT (PHP 8.4 deprecated)
update README to reflect new website
align code with new .com CPG website
correct deprecation in captcha

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