Well...
the query for selecting the NICK is this :
To show your results try this :PHP Code:$query = "SELECT nick FROM table_name";
$result = mysql_query($query, $connection_link);
good luck.PHP Code:$show_query = "SELECT * FROM table_name";
$handler = mysql_query($show_query, $connection_link);
while(mysql_fetch_array($handler))
{
print " <a href=\"www.hostingservice.com/phpscript?id=$handler[id]\">$handler[nick]</a>";
}




Bookmarks