PHP Code:
if ($_POST['do'] == 'ajax')
{
echo $_POST[$i] . '|||';
echo $_POST[$really] . '|||';
echo $_POST[$suck] . '|||';
exit;
}
So once i have done that can i just put $suck in a template and it will automatically refresh when the user clicks a link?
What should i use for onclick?: eg <a href='#' onclick='return Who knows'>Refresh</a>
DOES ANYONE HAVE A WORKING EXAMPLE OF THIS?