Jump to content

A simple php question


tonyalepski

Recommended Posts

Hi,

I am trying to convert a php function into perl and need to understand the following line in red :

 

 

   function pagination($query, $per_page = 10,$page = 1, $url = '?'){       
     $query = "SELECT COUNT(*) as `num` FROM {$query}";
     $row = mysql_fetch_array(mysql_query($query));
     $total = $row['num'];
        $adjacents = "2";

     $page = ($page == 0 ? 1 : $page); 
     $start = ($page - 1) * $per_page;        
  
     $prev = $page - 1;       
     $next = $page + 1;
        $lastpage = ceil($total/$per_page);
     $lpm1 = $lastpage - 1;
     
     $pagination = "";
     if($lastpage > 1)
     { 

.........................................

 

 

What will be the output of this line above in red.

 

Thank you very much.

Regards.

Tonya

Link to comment
Share on other sites

An example might look like this:

$lastpage=3;
for ($counter = 1; $counter <= $lastpage; $counter++){
    echo "We're on page $counter <br>";
}
echo "done";

which would output

We're on page 1
We're on page 2
We're on page 3
done
Edited by davidannis
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.