prepare(" INSERT INTO restaurants (name, google_map_link, menu_link, cost_category, food_type, food_type_subcategory) VALUES (:name, :google_map_link, :menu_link, :cost_category, :food_type, :food_type_subcategory) "); $stmt->execute([ 'name' => $name, 'google_map_link' => $google_map_link, 'menu_link' => $menu_link, 'cost_category' => $cost_category, 'food_type' => $food_type, 'food_type_subcategory' => $food_type_subcategory, ]); $success = "Restaurant added successfully!"; } ?>
= htmlspecialchars($success) ?>