How can I print?

The following actually worked.

 

<html>
<head><title>Kaz's program</title></head>
<body>

Let's see.
<?php

include "ここにパスワードなどの情報があるファイルを";
$con=mysqli_connect($host,$user,$passwd,$dbname) or die ("Didn't connect, Man.");
$query="SELECT * FROM `vocab_list` where ID < 10";
$result=mysqli_query($con,$query)
or die ("Didnt work.");
$row=mysqli_fetch_assoc($result);

ここで、書きだしたいものの、以下のではだめのようです。
echo $row['word'];

?>

Does this print?
</body></html>

Leave a Reply