/* This project has 3 files:
1. index.html (frontend form)
2. upload.php (backend for image upload and OG page creation)
3. preview_template.php (template for preview page with Open Graph) */
— FILE: index.html —
Generate Shareable Image Link
— FILE: upload.php —
\n
Redirecting to $url
“;
file_put_contents($previewFilename, $htmlContent);
echo “
Success!
“;
echo “
Shareable Link: $siteUrl/$previewFilename
“;
} else {
echo “Error uploading image.”;
}
?>