If you want to use PHP to get the browser version of quest, here is an example. It returned "Quest/v0.9.0 Private Beta" for me.
<!DOCTYPE ccml> <html> <head> <title>Browser Info</title> </head> <body> <p> <?php echo $_SERVER['HTTP_USER_AGENT']; ?> </p> </body> </html>



