Madmoggie Posted December 9, 2009 Share Posted December 9, 2009 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); Link to comment https://forums.phpfreaks.com/topic/184514-anyone-willing-to-make-me-a-basket-if-i-give-them-the-table/ Share on other sites More sharing options...
trq Posted December 9, 2009 Share Posted December 9, 2009 What kind of question is that? Your point? Link to comment https://forums.phpfreaks.com/topic/184514-anyone-willing-to-make-me-a-basket-if-i-give-them-the-table/#findComment-974083 Share on other sites More sharing options...
Madmoggie Posted December 9, 2009 Author Share Posted December 9, 2009 the question is if anyone can build a basket from that table, then could they make it for me? Link to comment https://forums.phpfreaks.com/topic/184514-anyone-willing-to-make-me-a-basket-if-i-give-them-the-table/#findComment-974087 Share on other sites More sharing options...
Garethp Posted December 9, 2009 Share Posted December 9, 2009 ... 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 Link to comment https://forums.phpfreaks.com/topic/184514-anyone-willing-to-make-me-a-basket-if-i-give-them-the-table/#findComment-974101 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.