Hey!
I got it working!!!!
New question:
How do I get this:
<?
while ($sql -> ReadRow()) {
echo $sql -> RowData["plant"] . ", ";
echo $sql -> RowData["quantity"] . ", ";
echo $sql -> RowData["stock"] . ", ";
echo $sql -> RowData["location"] . " ";
}
?>
To print within HTML without embedding HTML into the PHP? This example does not work:
<html>
<head>
<title>Plant Information</title>
</head>
<body>
<? print $plant; ?><br />
<? print $quantity; ?>, <? print $stock; ?><br />
<? print $location; ?> <br />
</body>
</html>