Files
Siro/backend/marketing_engine/insert_autonomous_task.php

19 lines
810 B
PHP

<?php
require_once __DIR__ . '/../core/bootstrap.php';
$con = Database::get('main');
$platform = $_GET['platform'] ?? 'facebook';
$targetUrl = $_GET['target_url'] ?? null;
if ($targetUrl) {
$stmt = $con->prepare("INSERT INTO marketing_tasks (platform, type, status, target_url) VALUES (?, 'autonomous_scroll_and_reply', 'pending', ?)");
$stmt->execute([$platform, $targetUrl]);
} else {
$stmt = $con->prepare("INSERT INTO marketing_tasks (platform, type, status) VALUES (?, 'autonomous_scroll_and_reply', 'pending')");
$stmt->execute([$platform]);
}
echo "<h1>Task inserted successfully!</h1>";
echo "<p>A new 'autonomous_scroll_and_reply' task is now pending for $platform.</p>";
echo "<p>Please restart the Android app now. It will immediately pick up this task and start scrolling!</p>";