- Use || in replacement of or.
- Use && in replacement of and.
- Use != in replacement of <>.
One last thing, I might be at mistake, but try to change this part:
- Code: Select all
if(md5($verification).'a4xn' != $_COOKIE['tntcon'])
...into:
- Code: Select all
if((md5($verification).'a4xn') != $_COOKIE['tntcon'])
Hope it helps.




