Please tell me how can I use window registry with PHP. Please try to provide some resource / resource links.
Printable View
Please tell me how can I use window registry with PHP. Please try to provide some resource / resource links.
You can't for security reasons.
If you could, you could read/write anything to anyones registry.
You will need to use the W32api functions same as with any other non-Windows-framework language. I posted a link to the documentation for them in another thread of yours.
You can read and write to the Registry on the server, but like lintz said you cannot read or write to the rregistary on the clients computer.
To read and write to the Registry on the server you need to use the COM() to create a Wscript.Shell object. Then you can use it like you would with any object.