Welcome Guest, Not a member yet? Register   Sign In
php mod % 3
#16

[eluser]John_Betong[/eluser]
 
Here we go:
Code:
//========================================================  
  function split_using_array_chunk($data=array())  {
    $sql = "SELECT id, title, date FROM jokes WHERE id >= 1111 ORDER BY id LIMIT 11";
    $this->_display($sql, '$sql');

    $Result_Object = mysql_query($sql);
    
    $news_array = array();
    // echo '<br /><b>$news_array</b><br />';
    while ($row = mysql_fetch_object($Result_Object)) {
      $cTmp         = $row->id .' --&gt; ' .$row->date .' --&gt; ' .$row->title;
      $news_array[] = $cTmp;
    }//endwhile

    $this->_display($news_array, '$news_array');
    
    $news_array_chunk = array_chunk($news_array, 3);
    
    $this->_display($news_array_chunk[0], '$news_array_chunk[0]');
    $this->_display($news_array_chunk[1], '$news_array_chunk[1]');
    $this->_display($news_array_chunk[2], '$news_array_chunk[2]');
    $this->_display($news_array_chunk[3], '$news_array_chunk[3]');
    die;
    
  }//endfunc  
    
  //==========================================================================  
  function _display($msg=array('one', 'two', 'three'), $msg_name='$msg_name not passed') {
    // echo var_dump($msg);
    echo "<pre style='width:66%; margin:2em auto; text-align:left; font-size:1.0em; background:#ffc none; color:#000; text-align:left; border:dotted'>";
      // echo "Function: <b>" .__FUNCTION__ .' : ' .__FILE__ .' line(' .__LINE__ .')</b><br />';
      
      echo '<br /><b>' .$msg_name .' ==> </b>';
      print_r($msg);
      echo '<br><br />';
    echo "</pre>";
    // return '';
  }//endfunc
&nbsp;
The Results can be seen &nbsp; HERE
&nbsp;
&nbsp;


Messages In This Thread
php mod % 3 - by El Forum - 10-18-2007, 06:07 PM
php mod % 3 - by El Forum - 10-18-2007, 08:01 PM
php mod % 3 - by El Forum - 10-18-2007, 10:00 PM
php mod % 3 - by El Forum - 10-18-2007, 10:07 PM
php mod % 3 - by El Forum - 10-19-2007, 03:31 AM
php mod % 3 - by El Forum - 10-29-2007, 04:04 PM
php mod % 3 - by El Forum - 10-31-2007, 05:24 AM
php mod % 3 - by El Forum - 10-31-2007, 08:23 AM
php mod % 3 - by El Forum - 10-31-2007, 09:03 AM
php mod % 3 - by El Forum - 10-09-2008, 04:07 PM
php mod % 3 - by El Forum - 10-09-2008, 09:06 PM
php mod % 3 - by El Forum - 10-09-2008, 11:17 PM
php mod % 3 - by El Forum - 10-10-2008, 12:34 AM
php mod % 3 - by El Forum - 10-10-2008, 03:38 AM
php mod % 3 - by El Forum - 10-10-2008, 12:23 PM
php mod % 3 - by El Forum - 10-11-2008, 09:36 AM
php mod % 3 - by El Forum - 10-11-2008, 01:42 PM



Theme © iAndrew 2016 - Forum software by © MyBB