php tabcontainer

Hi, i need help to make a php container into the following php code and populate the respective tab information from database

<?php $prodid = $_GET['id']; echo "Add item to cart\n"; $query = "SELECT description, price from products where prodid = $prodid"; $result = mysql_query($query); $row=mysql_fetch_array($result, MYSQL_ASSOC); $description = $row['description']; $price = $row['price']; $quantity = 1; echo "\n"; echo " Product Price Qty \n"; echo " \n"; echo "$description $price\n"; echo "<input type=\"text\" name=\"quantity\" value=\"$quantity\" size=\"3\" \n"; echo " \n"; echo "\n"; echo "\n"; echo "\n"; "I WANT THE PHPCONTAINER HEREEE!!! ANY HELP PLEASE ?>

how do you mean by php container?

Sponsor our Newsletter | Privacy Policy | Terms of Service