ajax application.
call page
-- server-side processing
-- return code
place page where needed
all the processing of the page should be done on the server-side like any other of your scripts. if you have a sorta of "forum" where the user needs to login, well then this is definitely something that you need to add at the top of the server-side page. The best would probably be to
PHP Code:
<?php include("checkSecurity.php"); ?>
on every page so the session can stay enabled and the user will continue to stay logged in if he/she was ever logged in
Bookmarks