Jump to content

Two Things


MMJ

Recommended Posts

1. On this page I was trying to figure out for hours why the code they posted didn't work.http://www.w3schools.com/php/php_sessions.asp

<?phpsession_destroy();?>

The reason was that you have to start the session before you can kill it:

<?phpsession_start();session_destroy();?>

Can this be fixed? :)2. Could there be a small page on how to send POST data with AJAX. I figured it out with googling but it would be nice if that info were available on W3Schools. :)

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...