You are on page 1of 1

ALTER TABLE `tblimage` ADD `description` VARCHAR( 255 ) NOT NULL AFTER `amount`

;
CREATE TABLE `tblmenumas` (
`menuid` int(11) NOT NULL auto_increment,
`title` varchar(100) NOT NULL,
`imgname` varchar(100) NOT NULL,
`amount` varchar(100) NOT NULL,
`description` varchar(255) NOT NULL,
PRIMARY KEY (`menuid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=11 ;
INSERT INTO `tblmenumas` (`menuid`, `title`, `imgname`, `amount`, `description`)
VALUES
(1, 'Vegetable Samosas', 'img1.jpg', '3.95', 'Crispy Triangular Pastry Stuffed
with peas and curried potatos and deep fried,served with tamarind chutney'),
(2, 'Beef Samosas', 'img2.jpg', '4.95', 'Crispy Triangular Pastry Stuffed with
ground beef mixed with our exotic spices and deep fried,served with tamarind chu
tney'),
(3, 'Onion Bhajia', 'img3.jpg', '5.95', 'Since Of Onion battered with traditiona
l spices in chickpea flour and deep fried,served with mint chutney'),
(4, 'Veg-Pakora', 'img4.jpg', '6.95', 'Assorted vegetable fritters battered with
spices inchickpea flour and deep fried,served with mint chutney'),
(5, 'Paneer-Pakora', 'img5.jpg', '7.95', 'Fresh Cottage cheese battered with spi
ce sinchickpea flour and deep fried,served with mint chutney'),
(6, 'Chicken-Pakora', 'img6.jpg', '9.95', 'Boneless Pieces of chicken battered w
ith spices in chickpea flour and deep fried,served with mint chutney'),
(7, 'Fish-Pakora', 'img7.jpg', '10.95', 'Boneless Basa fillets battered with spi
ces in chickpea flour and deepfried,served with mint chutney'),
(8, 'Gobi Chilly', 'img8.jpg', '8.95', 'Breaded Cauliflower cooked in a work wit
h chopped garlic,ginger and green chilli and spices,gamished with spring onions
'),
(9, 'Prawn Chilly', 'img9.jpg', '10.95', 'Prawn Cooked in awork with chopped gar
lic,ginger and green chilli mixed with diced green and red peppers and indian sp
ices,garnished with spring onions'),
(10, 'Kaathi Chicken Role', 'img10.jpg', '7.95', 'Homemade Wrap stuffed with spi
ced chicken and vegetables');

You might also like