Sushimaster
Member
Hi there,
how can I handle cookies within a template? Let's say I want to decide what to do with a given cookie value within a template like (in PHP)
Any ideas?
how can I handle cookies within a template? Let's say I want to decide what to do with a given cookie value within a template like (in PHP)
PHP:
if($_COOKIE["whatever"]==1){
//display template block A
}
else{
//display template block B
}
Any ideas?