mirror of https://github.com/BOINC/boinc.git
31 lines
661 B
PHP
Executable File
31 lines
661 B
PHP
Executable File
<?php
|
|
require_once("util.inc");
|
|
require_once("db.inc");
|
|
|
|
parse_str(getenv("QUERY_STRING"));
|
|
|
|
db_init();
|
|
|
|
$first = 1;
|
|
|
|
print_page_header("Platforms");
|
|
|
|
$query = "select * from platform";
|
|
$english_query = "Show all platforms";
|
|
|
|
if (strlen($id)) {
|
|
$query = append_sql_query( $query, "id = $id", $first );
|
|
$english_query = append_sql_query( $english_query, "id is $id", $first );
|
|
$first = 0;
|
|
}
|
|
|
|
echo "<p>Query is: <b>$english_query</b><p>";
|
|
|
|
$result = mysql_query($query);
|
|
while ($platform = mysql_fetch_object($result)) {
|
|
show_platform($platform);
|
|
}
|
|
|
|
print_page_end();
|
|
?>
|