What I want is for my MySQL database to be printed on a mostly html based page, with links on the top of each column, saying what information is contained in the columns below.
Then all I want is for these links to be a simple <a> link, but all they do is sort the mySQL table below when clicked.
Is this possible?
example..
<a ????="<?php
$query = mysql_query('SE LECT * FROM `stats` ORDER BY number DESC LIMIT 0, 64') ?>">Number</a>
just something like that, simple.
But if it isn't possible, how else could I do it?
Then all I want is for these links to be a simple <a> link, but all they do is sort the mySQL table below when clicked.
Is this possible?
example..
<a ????="<?php
$query = mysql_query('SE LECT * FROM `stats` ORDER BY number DESC LIMIT 0, 64') ?>">Number</a>
just something like that, simple.
But if it isn't possible, how else could I do it?
Comment