at Puri

ellievsbear
Today's Document
styofa doing anything
KIROKAZE

Origami Around
Sweet Seals For You, Always
🪼

titsay

Discoholic 🪩
taylor price
NASA
Peter Solarz
Misplaced Lens Cap
Sade Olutola
Monterey Bay Aquarium
he wasn't even looking at me and he found me
2025 on Tumblr: Trends That Defined the Year


seen from United States
seen from Türkiye
seen from United States
seen from United States

seen from France
seen from Brazil
seen from United States
seen from United Kingdom

seen from United States

seen from Canada

seen from United States
seen from United States
seen from United States

seen from United States

seen from Switzerland
seen from United States
seen from Netherlands

seen from Australia

seen from Lithuania

seen from United States
@sanjibsinha
at Puri

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
playing with the sea by sanjib sinha on Flickr.
বাংলা গল্প, stories from Bengal
bengal, bengali, bengali stroy
http://12reach.org/public/story/story_intro
"One day you'll feel eighteen, look sixty, and wonder what happened."
সবার জীবনেই সত্যি
বাংলা গল্প এবার থেকে আমার সাইটে লিখছি
নিজের সাইটে http://12reach.org, বাংলা গল্প লেখার সিদ্ধান্ত নেওয়ার পর থেকে বেশ হালকা লাগছে। গল্প বা উপন্যাস বা এমনি গদ্য লিখলেই হয় না, তা ছাপতে হয়। নিজেই ছাপব। আপাতত digitally...

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
reached 75 ... slow but steady..
i reached 75 words, after a long gap. in my bengali synonyms collection, it is an important day. still a long way to go. i planned to add english and french words along with bengali. ooops...
i am 48 years and one day old now, last day i touched 48, hopefully this humongous project will take shape before i reached 60!
hopefully if i was there to add some more words.......
Bengali Synonyms
someone searched শিশির in google and landed in my Bengali Synonyms site একইরকম, i really felt good. so it comes to someone's help....
Bengali thesaurus
Bengali synonyms, Bengali thesaurus ... progressing. Slowly. Steadily.
Almost 30 categories. Each category has nearly 40 to 50 subcategory that would consist of nearly 50 to 100 words each.
http://bengali.12reach.org
http://bengali.12reach.org
Bengali synonyms, Bengali thesaurus, bangla shobdokosh all in one place. The whole project is extremely interesting.

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
website in bengali
Website iN Bengali
done. at last. website in bengali.
smallest pagination class in php
Pagination class in PHP using array functions
Did you search for php training in kolkata? Okay, it might come to your help.
This is probably the smallest pagination class in php, that you can use to paginate. You need four pages, to show first row, previous row, next row and the last row. I keep pagination class in my 'inc' folder and include it in four pages. I used only two array functions. prev() and next(). You may modify this code to add more features.
1) The pagination class code or pagination.php/* * This is pagination class */ class pagination { var $_con=''; var $_db=''; var $_query=''; var $_page; var $_total_rows; function __construct($con, $db) { $this->_con = $con; $this->_db = $db; } function firstpage($query) { $this->_query = mysql_query($query); while ($row = mysql_fetch_array($this->_query)) { echo "Title : ". $row['title']; echo "Description : ". $row['description']; $next=next($row); $next++; } echo "<a href='http://localhost/ClassesAndObjects/page3.php?page={$next}'>NEXT</a>";"; if(isset ($_REQUEST['page'])){ $this->_page = $_REQUEST['page']; } } function paginate() { $this->_page = $_REQUEST['page']; if(isset ($_REQUEST['page'])){ $this->_page = $_REQUEST['page']; } $all_rs = &mysql_query('select * from comments'); $this->_total_rows = mysql_num_rows($all_rs); $this->_query = mysql_query('select * from comments where id="'.$this->_page.'"'); while ($row = mysql_fetch_array($this->_query)) { echo "Title : ". $row['title']; echo "Description : ". $row['description']; $next = next($row); $next++; $prev = prev($row); $prev--; echo "<a href='http://localhost/ClassesAndObjects/page1.php'>FIRST PAGE</a>"; echo '<------>'; echo "<a href='http://localhost/ClassesAndObjects/page2.php?page={$next}'>PREV</a>"; echo '<------>'; echo "<a href='http://localhost/ClassesAndObjects/page3.php?page={$next}'>NEXT</a>"; echo '<------>'; echo "<a href='http://localhost/ClassesAndObjects/page4.php?page={$this->_total_rows}'>LAST PAGE</a>"; } //at the beginning and at the end of the row $prev and $next become NULL //we go back to the first page if($next==NULL || $prev==NULL){ header('Location:http://localhost/ClassesAndObjects/page1.php'); } } } 2) To show the first row i start with page1.php. Here is the code... include_once 'inc/pagination.php'; $con = mysql_connect('localhost', 'root', ''); $db = mysql_select_db('appababa'); $query = 'select * from comments LIMIT 1'; $pagination = new pagination($con, $db); $pagination->firstpage($query); 3) To show the previous post i use page2.php. Here is the code... include_once 'inc/pagination.php'; $con = mysql_connect('localhost', 'root', ''); $db = mysql_select_db('appababa'); $query = 'select * from comments'; $pagination = new pagination($con, $db); $pagination->paginate(); 4) To show the previous post i use page3.php. Here is the code... include_once 'inc/pagination.php'; $con = mysql_connect('localhost', 'root', ''); $db = mysql_select_db('appababa'); $query = 'select * from comments'; $pagination = new pagination($con, $db); $pagination->paginate(); 5) To show the last post i use page4.php. Here is the code... include_once 'inc/pagination.php'; $con = mysql_connect('localhost', 'root', ''); $db = mysql_select_db('appababa'); $query = 'select * from comments'; $pagination = new pagination($con, $db); $pagination->paginate();
Pagination in PHP using array functions
A different approach
I tried a simple pagination using array functions. 1) i keep an MyArray class at my lib folder and name it commonfunction.php. it goes like this:class myArray implements ArrayAccess { protected $array = array(); function offsetSet($offset, $value) { if(!is_numeric($offset)){ throw new Exception("Invalid key {$offset}") ; } $this->array[$offset] = $value; } function offsetGet($offset) { return $this->array[$offset]; } function offsetUnset($offset) { unset ($this->array[$offset]); } function offsetExists($offset) { return array_key_exists($this->array, $offset); } } 2) Next, i have a published comments table, that i want to paginate. To start with, i create a pagination1.php page. The code is like this:include_once 'lib/commonfunction.php'; if(!isset ($_REQUEST['next'])){ echo ""; } mysql_connect('localhost', 'root', ''); mysql_select_db('appababa'); ////////////////////////////////////////////////////////////////////////////////// //trying pagination/// $myrow = new myArray(); $myquery = mysql_query("SELECT * FROM comments WHERE `comments`.`is_published`='Y'"); $myresults = array(); while ($myrow = mysql_fetch_array($myquery)) { $myresults[]=$myrow[0]; } foreach ($myresults as $key=>$value) { $myquery = mysql_query("SELECT * FROM comments WHERE `comments`.`id`='".$value."'"); while ($fullrow = mysql_fetch_array($myquery)) { //echo "Description : ".$fullrow['description']; if ($fullrow['id']==1){ echo "Description : ".$fullrow['description']; $next=next($fullrow); $next++; echo "<a href='http://localhost/ClassesAndObjects/pagination2.php?next={$next}'>NEXT</a>"; } } } 3) Next i have a pagination2.php. The code is like this:include_once 'lib/commonfunction.php'; if(!isset ($_REQUEST['next'])){ echo ""; } mysql_connect('localhost', 'root', ''); mysql_select_db('appababa'); ////////////////////////////////////////////////////////////////////////////////// //trying pagination/// $myrow = new myArray(); $myquery = mysql_query("SELECT * FROM comments WHERE `comments`.`is_published`='Y'"); $myresults = array(); while ($myrow = mysql_fetch_array($myquery)) { $myresults[]=$myrow[0]; } $present=0; if(isset ($_REQUEST['next'])) $present = $_REQUEST['next']; if ($present==0){ header('Location:http://localhost/ClassesAndObjects/pagination1.php'); } $myquery = mysql_query("SELECT * FROM comments WHERE `comments`.`id`='".$present."'"); while ($fullrow = mysql_fetch_array($myquery)) { //echo "Description : ".$fullrow['description']; if ($fullrow['id']==$present){ echo "Description : ".$fullrow['description']; $next=next($fullrow); $next++; echo "<a href='http://localhost/ClassesAndObjects/pagination2.php?next={$next}'>NEXT</a>"; echo " ------ "; $prev=prev($fullrow); $prev--; echo "<a href='http://localhost/ClassesAndObjects/pagination3.php?prev={$prev}'>PREV</a>"; } } $row = new myArray(); $query1 = mysql_query("SELECT * FROM comments WHERE `comments`.`is_published`='Y'"); $results = array(); while ($row = mysql_fetch_array($query1)) { $results[]=$row[0]; //echo $row['description']." = "."<a href='http://localhost/ClassesAndObjects/update.php?id={$row['id']}'>UNPUBLISH</a>"; } //echo "Total number of published comments : ".count($results); $count=count($results); $count++; if ($present==$count){ header('Location:http://localhost/ClassesAndObjects/pagination1.php'); } 3) Next i have pagination3.php. The code is like this:include_once 'lib/commonfunction.php'; if(!isset ($_REQUEST['prev'])){ echo ""; } mysql_connect('localhost', 'root', ''); mysql_select_db('appababa'); ////////////////////////////////////////////////////////////////////////////////// //trying pagination/// $myrow = new myArray(); $myquery = mysql_query("SELECT * FROM comments WHERE `comments`.`is_published`='Y'"); $myresults = array(); while ($myrow = mysql_fetch_array($myquery)) { $myresults[]=$myrow[0]; } $present=0; if(isset ($_REQUEST['prev'])) $present = $_REQUEST['prev']; if ($present==0){ header('Location:http://localhost/ClassesAndObjects/pagination1.php'); } $myquery = mysql_query("SELECT * FROM comments WHERE `comments`.`id`='".$present."'"); while ($fullrow = mysql_fetch_array($myquery)) { //echo "Description : ".$fullrow['description']; if ($fullrow['id']==$present){ echo "Description : ".$fullrow['description'].; $next=next($fullrow); $next++; echo "<a href='http://localhost/ClassesAndObjects/pagination2.php?next={$next}'>NEXT</a>"; echo " ------ "; $prev=prev($fullrow); $prev--; echo "<a href='http://localhost/ClassesAndObjects/pagination3.php?prev={$prev}'>PREV</a>"; } }
A simple pagination
i am going to post a simple pagination code in http://12reach.org
it is based on the concept of array in PHP...

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
array in php
arraying some interesting articles about php array...
http://12reach.org/public/myphp/what_is_an_array
A new look of http://12reach.org