i can't figure it out. my log keeps filling up /includes/functions.php on line 700 line 700 if ( $cam->$item == '' . $value . '' ) { Code (markup):
if ( $item == 'age' ) { if( in_array( $cam->age, $ages ) && $cam->gender == $gender ) { $count++; if ( $count >= $start && $count <= $end ) { echo $camhtml; } } } elseif( $item == 'pop' ) { if ( $cam->num_users > $value ) { $count++; if ( $count >= $start && $count <= $end ) { echo $camhtml; } } } elseif( $item == 'search' ) { if ( (QRY_HTML != NULL && QRY_HTML != '') && ( in_array(QRY_HTML, $tags) || (stripos($cam->display_name, QRY_HTML) !== false) || (stripos($cam->room_subject, QRY_HTML) !== false) || (stripos($cam->username, QRY_HTML) !== false) ) ) { $count++; if ( $count >= $start && $count <= $end ) { echo $camhtml; } } } else { if ( $cam->$item == '' . $value . '' ) { $count++; if ( $count >= $start && $count <= $end ) { echo $camhtml; } } } } } echo '</div>'; $cams->close(); Code (markup):