私のワードプレスサイトには連絡先フォームがあり、それはmysqlへのデータであり、メールでも送信されます。私は現在、データベースからデータを読み取って印刷するだけの単純な web アプリに取り組んでいます。モバイルで読みやすくするために、データベースから印刷された 1 行おきにグレー、1 行おきに白にしたいと考えています。コードからわかるように、これを試しましたが、惨めに失敗しました。だから私はこれを見てほしい: http://i49.tinypic.com/20fbvdi.png そしてここにコードがあります:
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Yhteydenottopyynnöt</title>
<style>
body{width:100%;}
.anotherrow{background-color:#f1f;}
</style>
</head>
<body>
<?php
$con = mysql_connect("localhost","user","pass");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("database", $con);
$result = mysql_query("SELECT * FROM wp_contactform");
echo "<table border='1'>
<tr>
<th style='width:10%;'>ID</th>
<th style='width:10%;' class='anotherrow'>Nimi</th>
<th style='width:10%;'>Puhelin</th>
<th style='width:10%;' class='anotherrow'>Sposti</th>
<th style='width:40%;'>Viesti</th>
<th style='width:10%;' class='anotherrow'>Päivä</th>
<th style='10%;'>IP</th>
</tr>";
while($row = mysql_fetch_array($result))
{
echo "<tr>";
echo "<td style='width:10%;'>" . $row['ID'] . "</td>";
echo "<td style='width:10%;' class='anotherrow'>" . $row['Nimi'] . "</td>";
echo "<td style='width:10%;'>" . $row['Puhelin'] . "</td>";
echo "<td style='width:10%;' class='anotherrow'><a href='mailto:" . $row['Email'] . "'>" . $row['Email'] . "</a></td>";
echo "<td style='width:40%;'>" . $row['Viesti'] . "</td>";
echo "<td style='width:10%;' class='anotherrow'>" . $row['Day'] . "</td>";
echo "<td style='width:10%;'>" . $row['IP'] . "</td>";
echo "</tr>";
}
echo "</table>";
mysql_close($con);
?>
</body>
</html>
コードから悪夢を見ないでください。それは私にとって十分に有効であり、Web アプリを使用しているのは私だけです :)