Forums / Cotonti / Support / Ajax help.

lukgoh
#37474 2013-05-10 09:40

When you say an AJAX handler, do you mean like this:

PHP
1
2
3
4
5
6
7
8
9
10
if (COT_AJAX)
{
    // AJAX-specific code here
}
else
{
    // Normal mode code here
}
  
// Common code here