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);
?>