I want to make website like this http://www.shayonahandicrafts.com/ mainly i want to add to inquiry feature , where visitor can ask for inquiry for one or more product, can any body help, what is the programming for this?, any sample programming or script for this type of feature, i have not more php knowleadge, can i do thant? data base required for this?
These seems to be a simple MY SQL and PHP SImple Way <form method="get" action="pagename.php"> <input type="hidden" name="product" value="prod_name"> <input type="submit" value"Find Out More"> And then pagename.php <?php $product = $_GET["product"]; $result="SELECT info FROM tablename WHERE product = '".$product."'"; bla bla bla