Advertisement
Guest User

Untitled

a guest
Aug 28th, 2013
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. $record = array(
  2. array("account"=>"123","student_no"=>"444"),
  3. array("account"=>"123","student_no"=>"444"),
  4. array("account"=>"123","student_no"=>"444"),
  5. array("account"=>"123","student_no"=>"444"),
  6. array("account"=>"123","student_no"=>"444")
  7. );
  8.  
  9. $output = sprintf( "%20s %20s \n", "Account","student_no" ); // Print Account student_no
  10. foreach($record as $row){
  11. $output .= sprintf( "%20s %20s",$row['account'], $row['student_no'] ) . "\n";
  12. }
  13. echo "<pre>$output</pre>";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement