prepare(" SELECT project_id, project_name, client_name FROM projects WHERE project_id = ? AND client_id = ? "); $stmt->execute([$project_id, $client_id]); $project = $stmt->fetch(PDO::FETCH_ASSOC); if (!$project) { header('Location: projects-list.php'); exit; } // Get batches for this project $stmt = $shopPdo->prepare(" SELECT batch_number, total_urls, sent_count, upload_type, created_at FROM survey_url_batches WHERE project_id = ? ORDER BY batch_number DESC "); $stmt->execute([$project_id]); $batches = $stmt->fetchAll(PDO::FETCH_ASSOC); } catch (Exception $e) { $error = "Error loading project: " . $e->getMessage(); } $page_title = "Manage Survey URLs"; ?> <?php echo $page_title; ?> - Relevant Reflex

Add Survey URLs

Upload one URL template and generate multiple unique URLs by appending identifiers.

Example: https://survey.com/s?uid={ID}

Upload up to 5,000 pre-generated URLs with unique identifiers already embedded.

Example: One URL per line
https://survey.com/s?uid=ABC123
https://survey.com/s?uid=XYZ789
Use {ID} as placeholder where unique identifier should be inserted.
Maximum: 5,000 URLs per batch
Cancel

URL Batches ()

No survey URLs uploaded yet. Add your first batch above.

Batch #
Total URLs
Sent
Available
View URLs