pouet.net/api/platforms.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";
}
?>