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 "how do you mean by php container?