[PHP] Function Question

2001-05-18 Thread Michael O'Neal
Hi. I'm hoping you folks can help me with a function problem I have. Take a look at the following code: ?> I have a page divided into 3 sections. A header include, the content, and a footer include. I have a function (fill_page) that lives in the h

[PHP] function question

2003-10-29 Thread Brian V Bonini
function splitPageResults($query, $max_rows, $count_key = '*', $page_holder = 'page') { Am I wrong in assuming that $count_key is being explicitly set to '*' in this instance? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] function question

2003-10-29 Thread CPT John W. Holmes
From: "Brian V Bonini" <[EMAIL PROTECTED]> > function splitPageResults($query, $max_rows, $count_key = '*', > $page_holder = 'page') { > > Am I wrong in assuming that $count_key is being explicitly set to '*' in > this instance? Only if no value is passed when the function is called. splitPage