Ana Sayfa
$total_pages ) $shoutbox_page = 1; //create the page_numbers (the select box) $output_buffer .= page_numbers( $total_pages , $shoutbox_page ); } //Else use the default values... (empty shoutbox) else { $shouts = 0; $total_shouts = 0; $shout_pointer = 0; $output_buffer .= page_numbers( 1 , 1 ); } //Loop through the shouts. descending (Z to A) for( $i = $shout_pointer ; $i > ($shout_pointer-$per_page); $i-- ) { //if the value is greater then -1 if( $i > -1 ) { //if the shouts exists if( $shouts[$i] ) list( $name, $email, $date, $shout ) = explode("|",$shouts[$i]); //if the name is not empty if( !empty( $name ) ) { //empty the email_start and end $email_start = ""; $email_end = ""; //if the email is not empty if( ! empty( $email ) ) { $email_start = ""; $email_end = ""; } //add to output buffer $output_buffer .= "" . $email_start . $name . $email_end . "n" . $shout . "
"; } } } ?>