beginTransaction(); $stmt = $pdo->prepare("INSERT INTO cars (user_id, brand, model, year, price, city, description, status) VALUES (?, ?, ?, ?, ?, ?, ?, 'pending')"); $stmt->execute([$_SESSION['user_id'], $brand, $model, $year, $price, $city, $description]); $carId = $pdo->lastInsertId(); if ($image_url) { $stmt = $pdo->prepare("INSERT INTO car_images (car_id, image_path, is_main) VALUES (?, ?, 1)"); $stmt->execute([$carId, $image_url]); } $pdo->commit(); $success = true; } catch (Exception $e) { $pdo->rollBack(); $error = "Failed to list car: " . $e->getMessage(); } } $cities = ['Kabul', 'Herat', 'Mazar-i-Sharif', 'Kandahar', 'Jalalabad', 'Kunduz', 'Ghazni', 'Balkh']; ?>
Provide details about your car. Our team will review and approve your listing within 24 hours.
Your car has been sent for approval. You can track its status in your dashboard.