Help for this page

Select Code to Download


  1. or download this
    @row4 = $sth4->fetchrow_array();
    
    ...
    
    
    while (@row4 = $sth4->fetchrow_array()) {
    
  2. or download this
    while (@row4 != 0) {
    ...  # Your code here.
    @row4 = $sth4->fetchrow_array();
    }