Hello, I would like a script that will tell my users their system info as well as their plugin that are installed or not installed --- If intersted I can send you a link to a site that is using this to give you an idea Thanks FD
You cant...PHP is server side, end of story. Point blank, PHP CANNOT read the client's system. But javascript...SORT of can. So you might want to look into that.
PHP can tell you a user's system info. Use PHP's $_SERVER predefined variable. $_SERVER['HTTP_USER_AGENT'] should tell you the user's browser and operating system. $_SERVER: php.net/manual/en/reserved.variables.server.php Predefined variables: php.net/manual/en/reserved.variables.php (I can't post live links yet...)
Ahh, I see, the BROWSER and OS, ok then yes: it can, because it reads the headers from the browser. Sorry about the confusion. http://us2.php.net/manual/en/reserved.variables.server.php