PHP

提供: MediaArtWiki

PHP + apache2 + MySQL + vine4.1インストール

php-apache2とphp-mysqlが必要。ついでにphp-develもインストール。 apache2を再起動。 テスト用のphpスクリプト。

<?php
        phpinfo();
?>
<?
$db = mysql_connect('localhost', 'alice', 'moge')
    or die('Could not connect: ' . mysql_error());
mysql_select_db('test_db')
    or die('Could not select database');

$query = "select * from board";
$result = mysql_query($query)
    or die('Query failed: ' . mysql_error());

echo("<table border=1>\n");
while($line = mysql_fetch_assoc($result)){
        printf("<tr><td>%s<td>%s<td>%s<td>",
                $line["categ"], $line["host"], $line["path"]);
        printf("<a href=\"http://%s.2ch.net%s\">%s</a>\n",
                $line["host"], $line["path"], $line["name"]);
}
echo("</table>\n");

mysql_free_result($result);
mysql_close($db);
?>

参考

東京工芸大学 > 芸術学部 > メディアアート表現学科 / インタラクティブメディア学科 > MediaArtWiki
個人用ツール
名前空間
変種
操作
案内
ツールボックス