Here's what I want to do.
First click to video, every subsequent click after that goes to join form.
Would a simple session script work?
start_session();
session_register("clicks")
if ($clicks > 1){
header ("Location: join form");
}
any downfalls of doing it this way?
any way someone could get around it?
First click to video, every subsequent click after that goes to join form.
Would a simple session script work?
start_session();
session_register("clicks")
if ($clicks > 1){
header ("Location: join form");
}
any downfalls of doing it this way?
any way someone could get around it?

AIM: GrouchyGfy
Comment