mirror of
https://github.com/psenough/pouet.net.git
synced 2025-01-17 13:18:24 +01:00
12 lines
325 B
PHP
12 lines
325 B
PHP
<?php
|
|
header('Content-Type: text/plain; charset=utf-8');
|
|
include_once('../include/misc.php');
|
|
include_once('../include/auth.php');
|
|
conn_db();
|
|
$query="SELECT * FROM platforms";
|
|
$result = mysql_query($query);
|
|
while($row = mysql_fetch_array($result)) {
|
|
echo $row['id'] . "\t" . $row['name'] . "\t" . $row['icon'] . "\n";
|
|
}
|
|
?>
|