NextGEN Conditional Statement [closed]

I figured it out!!

My final code looks like:

<?php
    $images = intval($wpdb->get_var("SELECT COUNT(*) FROM $wpdb->nggpictures"));
    $ngg_options = nggGallery::get_option("ngg_options");
    $maxElement = $ngg_options["galImages"];
    if ($images > $maxElement) {
        echo "duck";
    }
?>

Basically the code checks see if the number of images IS larger than the number of images displayed per page…if it is larger I echo what I want it to do…if not, it does nothing.