Participants
Participants listed in alphabetical order.
Who | From where | Presentation title |
$conn = pg_connect("host=pgsql.web4u.cz port=5432 dbname=kubanek user=kubanek password=azsxdc");
if (!$conn)
{
die("Cannot connect to database");
}
$result = pg_query($conn, "SELECT * from malaga2009 order by surname asc");
if (!$result)
{
die("Cannot execute query");
}
while ($record = pg_fetch_array($result, NULL, PGSQL_ASSOC))
{
echo ('' . $record['name'] . ' ' . $record['surname'] . " | \n"
. $record['affiliation'] . " | \n" . $record['prestitle'] . " |
\n");
}
pg_close($conn);
?>