Advertisement
spacechase0

Post array

Feb 22nd, 2014
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. <?php
  2.  
  3. $posts = array()
  4.  
  5. $post[] = array(
  6.                 'title' => 'Post 1',
  7.                 'text'  => '...',
  8.                );
  9. $post[] = array(
  10.                 'title' => 'Post 2',
  11.                 'text'  => '...',
  12.                );
  13.  
  14. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement