i need to insert a tick box on a form so that a client can click it once they have read and accepted the terms and conditions,
it would be a huge help if anyone could give me advice on this as im really confused with it.
thankyou in advance
Moderator: General Moderators
Code: Select all
session_start();
$_SESSION['agreed'] = TRUE;Code: Select all
session_start();
if ($_SESSION['agreed'] = TRUE)
{
// show page
}
else
{
// show form
}