Hello agents.
I'd been out of the computers world for some 10 years or something, and now I'm trying to improve a little catalog that I'm developing for my business. Anyway, I'd been reading about databases, html forms, arrays, php, etc... and now what im doing is try to put all that together. So, these are some examples for my Html and Php files.
<form method="POST" action="catalog.php">
<input type="text" name="product">
<input type="submit" value="Check">
</form>
<?php
extract($_POST);
echo $product;
?>
Now, I don't want it just to write the product, instead of that I would like it to retrieve the info for that product from my database, and here's where I am, asking you for help. Anyways thank you for your cooperation, and have a good day.