Try this with your nudes.php template page:
$confirm = $_GET['confirm'];
if ($confirm=='yes') {
# content goes here
} else {
# confirm action required
[a href='?confirm=yes'] Click here to confirm...[/a]
}
Sorry, don’t know how to use code tag
Try this:
<?php
$confirm = $_GET['confirm'];
if ($confirm=='yes') {
# content goes here
} else {
# confirm action required
Click here to confirm...
}
?>