Здравствуйте, уважаемые флешеры
Не могли бы, Вы мне помочь.
Как в этот php/код, добавить поддержку сессии?

PHP код:
<?php
// SET THE CORRECT USERNAME AND PASSWORD
$correct_user = "flash";
$correct_pass = "vista";
// Checkif the username is correct
if ($user==$correct_user){
//IF the username is correct, check the password
if ($pass==$correct_pass){
//If the password is correct, return "ok"
$response="ok";
} else {
//Else the password is wrong
$response="Wrong password";
}
} else {
//If the username is wrong
$response="Wrong username";
}
//Return the response to Flash
print "&response=".$response."&";
?>
что-то вроде, этого

Код:
session_start();
session_destroy();
Заранее благодарю.
С уважением,
codfelix