Show Tables

macaddrs nicvendors
(Show max 1000 rows of selected table).

"); print(''); $count=0; while ($field = mysqli_fetch_field($result)) { print(''.$field->name.''); $count++; } print(''); // print rows while ($row = mysqli_fetch_row($result)) { print(''); for($i=0; $i<$count; $i++){ print(''.$row[$i].''); } print(''); } print(""); $close_flag = mysqli_close($link); ?>