Quantcast
Channel: WordPress › Support » Forum: Hacks - Recent Topics
Viewing all articles
Browse latest Browse all 8245

marlene4us on "I have a query that returns a large list, how make the paging this it?"

$
0
0

how make the paging this it?

<?php
global $wpdb;

$result = $wpdb->get_results( "SELECT * FROM ".$wpdb->prefix."mytable ORDER BY date_added DESC" );

?>
<div class="wrap">

	<table class="widefat">
		<thead>
			<th>User</th>
			<th>IP</th>
		</thead>
		<tbody>
		<?php foreach ( $notifications as $notification ) : ?>
			<tr>
				<td style="padding:5px;"><?php echo $result->user; ?></td>
				<td style="padding:5px;"><?php echo $result->ip; ?></td>
			</tr>
		<?php endforeach;?>
		</tbody>
		<tfoot>
			<th>User</th>
			<th>IP</th>
		</tfoot>
	</table>
	<p>&nbsp;</p>
  </form>
</div>
<?php
}
?>

Viewing all articles
Browse latest Browse all 8245

Trending Articles