Programming for inquiry cart

Discussion in 'PHP' started by visit_india, Jan 3, 2006.

  1. #1
    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?
     
    visit_india, Jan 3, 2006 IP
  2. onlyican.com

    onlyican.com Peon

    Messages:
    206
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #2
    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
     
    onlyican.com, Jan 3, 2006 IP