Basic
7 days$15.00
Sidebar banner (small), 7 days
Featured
14 days$35.00
Homepage section + sidebar, 14 days
Premium
30 days$75.00
Top banner rotation + homepage highlight, 30 days
Submit your ad request
What happens next?
- We review your request and banner.
- We contact you to confirm placement & schedule.
- Once payment is confirmed, your ad goes live.
Guidelines
- Content must be legal and appropriate.
- No misleading or harmful claims.
- We may adjust image size/format for performance.
Support
Need help? Contact support.
Note for Admin: You can optionally create a table to store requests.
Show suggested SQL
CREATE TABLE `ads_requests` (
`id` INT UNSIGNED NOT NULL AUTO_INCREMENT,
`user_id` INT NULL,
`plan_key` VARCHAR(20) NOT NULL,
`plan_days` INT NOT NULL,
`amount_usd` DECIMAL(10,2) NOT NULL DEFAULT 0.00,
`title` VARCHAR(255) NOT NULL,
`target_url` VARCHAR(1024) NOT NULL,
`banner_url` VARCHAR(1024) NULL,
`contact_name` VARCHAR(255) NOT NULL,
`contact_email` VARCHAR(255) NULL,
`contact_phone` VARCHAR(64) NULL,
`notes` TEXT NULL,
`start_date` DATE NULL,
`status` ENUM('pending','approved','rejected','scheduled','live','completed','cancelled') NOT NULL DEFAULT 'pending',
`created_at` DATETIME NOT NULL,
`updated_at` DATETIME NULL,
PRIMARY KEY (`id`),
KEY `idx_user` (`user_id`),
KEY `idx_status` (`status`),
KEY `idx_created` (`created_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;