PetZone-eCommerce

prefix . ‘pz_products’; $sql = “CREATE TABLE $table ( id int AUTO_INCREMENT PRIMARY KEY, name varchar(255), price decimal(10,2), image varchar(500), category varchar(100) )”; require_once(ABSPATH . ‘wp-admin/includes/upgrade.php’); dbDelta($sql); $products = [ [‘Smart Pet Feeder’, 159.99, ‘https://images.unsplash.com/photo-1601758228041-f3b2795255f1?w=400’, ‘Tech’], [‘Memory Foam Dog Bed’, 89.99, ‘https://images.unsplash.com/photo-1583337130417-3346a1be7dee?w=400’, ‘Comfort’], [‘Puzzle Treat Dispenser’, 24.99, ‘https://images.unsplash.com/photo-1605568427561-40dd23c2acea?w=400’, ‘Toys’], [‘Salmon Oil’, 34.99, ‘https://images.unsplash.com/photo-1628009368231-7bb7cfcb0def?w=400’, ‘Health’], [‘Dog Harness’, 39.99, ‘https://images.unsplash.com/photo-1551717743-49959800b1f6?w=400’, ‘Accessories’], [‘Cat Litter Box’, 449.99, ‘https://images.unsplash.com/photo-1574144611937-0df059b5ef3e?w=400’, ‘Tech’], [‘GPS Tracker’, 129.99, ‘https://images.unsplash.com/photo-1601758228041-f3b2795255f1?w=400’, ‘Tech’], [‘Cat Tower’, 149.99, ‘https://images.unsplash.com/photo-1545249390-6bdfa286032f?w=400’, ‘Furniture’], [‘Grooming Kit’, 124.99, ‘https://images.unsplash.com/photo-1574144611937-0df059b5ef3e?w=400’, ‘Grooming’], [‘Joint Supplement’, 44.99, ‘https://images.unsplash.com/photo-1628009368231-7bb7cfcb0def?w=400’, ‘Health’], [‘Water Fountain’, 45.99, ‘https://images.unsplash.com/photo-1583337130417-3346a1be7dee?w=400’, ‘Feeding’], [‘LED Leash’, 32.99, ‘https://images.unsplash.com/photo-1551717743-49959800b1f6?w=400’, ‘Accessories’], [‘Dog Treats’, 28.99, ‘https://images.unsplash.com/photo-1589924691995-400dc9ecc119?w=400’, ‘Food’], [‘Dental Chews’, 22.99, ‘https://images.unsplash.com/photo-1589924691995-400dc9ecc119?w=400’, ‘Health’], [‘Food Bowls’, 54.99, ‘https://images.unsplash.com/photo-1583337130417-3346a1be7dee?w=400’, ‘Feeding’], [‘Car Seat Cover’, 69.99, ‘https://images.unsplash.com/photo-1551717743-49959800b1f6?w=400’, ‘Travel’], [‘Ball Launcher’, 199.99, ‘https://images.unsplash.com/photo-1605568427561-40dd23c2acea?w=400’, ‘Toys’], [‘Anxiety Vest’, 49.99, ‘https://images.unsplash.com/photo-1551717743-49959800b1f6?w=400’, ‘Health’], [‘Cat Wand’, 19.99, ‘https://images.unsplash.com/photo-1545249390-6bdfa286032f?w=400’, ‘Toys’], [‘Slow Feeder’, 16.99, ‘https://images.unsplash.com/photo-1583337130417-3346a1be7dee?w=400’, ‘Feeding’], [‘Vacuum Kit’, 79.99, ‘https://images.unsplash.com/photo-1574144611937-0df059b5ef3e?w=400’, ‘Grooming’], [‘Smart Pet Door’, 299.99, ‘https://images.unsplash.com/photo-1601758228041-f3b2795255f1?w=400’, ‘Tech’], [‘Dog Pillow’, 67.99, ‘https://images.unsplash.com/photo-1583337130417-3346a1be7dee?w=400’, ‘Comfort’], [‘Laser Toy’, 29.99, ‘https://images.unsplash.com/photo-1545249390-6bdfa286032f?w=400’, ‘Toys’], [‘Training Clicker’, 12.99, ‘https://images.unsplash.com/photo-1605568427561-40dd23c2acea?w=400’, ‘Training’], [‘Pet Backpack’, 89.99, ‘https://images.unsplash.com/photo-1551717743-49959800b1f6?w=400’, ‘Travel’], [‘Litter Scoop’, 159.99, ‘https://images.unsplash.com/photo-1574144611937-0df059b5ef3e?w=400’, ‘Tech’], [‘Cooling Mat’, 34.99, ‘https://images.unsplash.com/photo-1583337130417-3346a1be7dee?w=400’, ‘Comfort’], [‘Pet Camera’, 189.99, ‘https://images.unsplash.com/photo-1601758228041-f3b2795255f1?w=400’, ‘Tech’], [‘Waste Bags’, 19.99, ‘https://images.unsplash.com/photo-1551717743-49959800b1f6?w=400’, ‘Accessories’], [‘Window Perch’, 39.99, ‘https://images.unsplash.com/photo-1545249390-6bdfa286032f?w=400’, ‘Furniture’], [‘Life Jacket’, 49.99, ‘https://images.unsplash.com/photo-1551717743-49959800b1f6?w=400’, ‘Safety’], [‘Odor Eliminator’, 27.99, ‘https://images.unsplash.com/photo-1574144611937-0df059b5ef3e?w=400’, ‘Cleaning’], [‘Dog Puzzle’, 42.99, ‘https://images.unsplash.com/photo-1605568427561-40dd23c2acea?w=400’, ‘Toys’], [‘First Aid Kit’, 59.99, ‘https://images.unsplash.com/photo-1628009368231-7bb7cfcb0def?w=400’, ‘Health’], [‘Seat Belt’, 24.99, ‘https://images.unsplash.com/photo-1551717743-49959800b1f6?w=400’, ‘Safety’], [‘Cat Tunnel’, 29.99, ‘https://images.unsplash.com/photo-1545249390-6bdfa286032f?w=400’, ‘Toys’], [‘Pet Stroller’, 149.99, ‘https://images.unsplash.com/photo-1551717743-49959800b1f6?w=400’, ‘Travel’], [‘Fish Feeder’, 79.99, ‘https://images.unsplash.com/photo-1601758228041-f3b2795255f1?w=400’, ‘Tech’] ]; foreach ($products as $p) { $wpdb->insert($table, [‘name’ => $p[0], ‘price’ => $p[1], ‘image’ => $p[2], ‘category’ => $p[3]]); } } function pz_display() { global $wpdb; $table = $wpdb->prefix . ‘pz_products’; $products = $wpdb->get_results(“SELECT * FROM $table”); $html = ‘
‘; $html .= ‘

? PetZone Store

‘; $html .= ‘
‘; foreach ($products as $product) { $html .= ‘
‘; $html .= ‘‘ . $product->name . ‘‘; $html .= ‘

Category: ‘ . $product->category . ‘

‘; $html .= ‘

$’ . $product->price . ‘

‘; $html .= ‘‘; $html .= ‘
‘; } $html .= ‘
‘; return $html; } ?>