Jump to content

Anyone willing to make me a basket if i give them the table???


Madmoggie

Recommended Posts

CREATE TABLE `product` (
  `productid` int(100) NOT NULL auto_increment,
  `type` varchar(40) NOT NULL,
  `name` varchar(50) NOT NULL,
  `price` varchar(10) NOT NULL,
  `description` varchar(60) NOT NULL,
  `quantity` int(30) NOT NULL,
  PRIMARY KEY  (`productid`)
) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=latin1;

-- 
-- Dumping data for table `product`
-- 

INSERT INTO `product` VALUES (1, 'Jumper', 'Nike Jumper with hood', '23', 'Nike Jumper with Hood, blue ', 43);
INSERT INTO `product` VALUES (2, 'Jumper', 'Nike Jumper without hood.', '20', 'Nike Jumper with Hood, light blue ', 28);
INSERT INTO `product` VALUES (3, 'Accessories', 'Nike padded gloves', '12', 'strong protective gloves', 10);
INSERT INTO `product` VALUES (4, 'Accessories', 'Nike gum guard', '7', 'extra strong and extra good fit', 17);
INSERT INTO `product` VALUES (5, 'Shoes', 'Indoor Trainers', '45', 'White indoor trainers, laces', 10);
INSERT INTO `product` VALUES (6, 'Shoes', 'Outdoor Astro Trainers', '67', 'black outdoor astro trainers', 12);
INSERT INTO `product` VALUES (7, 'Accessories', 'Ball', '3', 'standard white hockey ball', 40);
INSERT INTO `product` VALUES (8, 'Accessories', 'Hockey Stick ', '30', 'plain wooden hockey stick', 30);
        

... What do you mean "Build you a basket". As far as I'm aware, PHP has no baskets. If they did, I'd have somewhere to put my dirty laundry, but as they're lying on the floor, I'm still seeing no baskets. Maybe what PHP needs is a saw. The includes would be the nails, but what would the hammers be? Regardless, it'd be a very crude basket. Normal baskets are made of plastic, not wood.

 

But anyway, if you explained exactly what you wanted, you could find someone who would do it (For money) in the freelance section of this forum, try posting there, or PMing a member

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.