'INSERT INTO mytable .....( "' . $a . '", "' . $b . '")'
'INSERT INTO mytable .....( "{$a}", "{$b}")'
window.onscroll = function ()
{
var clientHeight = document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body.clientHeight;
var documentHeight = document.documentElement.scrollHeight ? document.documentElement.scrollHeight : document.body.scrollHeight;
var scrollTop = window.pageYOffset ? window.pageYOffset : (document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop);
if((documentHeight - clientHeight) <= scrollTop)
{
window.scrollTo(0, 0);
}
}
RegExp()