- Code: Select all
if (!$sendt)
you might want to change that to:
- Code: Select all
if (!isset($sendt))
might be you're problem, I could also be mistaken about this one.
It might also be that "register_globals" is set to off in you're php.ini file.
You can find a description about that in this post wich also links to a description on php.net
A solution when it is set to off is to set it to on, or the use the global arrays. (see the other topic about that).
Greetz Daan
