bakineggs (owner)

Revisions

gist: 85818 Download_button fork
public
Public Clone URL: git://gist.github.com/85818.git
Embed All Files: show embed
PHP #
1
2
3
4
5
6
7
8
<?php
$db_handle = mysql_connect('some_server', 'some_username', 'some_password');
$result = mysql_query("select id, title, type, url, views from whatever_table order by id desc limit 100", $db_handle);
while ($row = mysql_fetch_assoc($result)) {
  // display row
  echo "ID: " . $row['id'];
}
?>