Guest User

Untitled

a guest
Nov 17th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. $w = mysqli_query($con,"SELECT age, percent FROM drive03_2_monthly_income WHERE birthYear='1956' AND (age LIKE '%.00%') ORDER BY birthYear,age ");
  2.  
  3. $row = mysqli_fetch_array($w);
  4. for($n=0;$n<9;$n++) {
  5. echo $row[$n]->age." -- ".$row[$n]->percent."<br />";
  6. }
Add Comment
Please, Sign In to add comment