@deron
To enable the zip extension in XAMPP, you can follow these steps:
- Go to the XAMPP installation directory and navigate to the "php" folder.
- Look for the "php.ini" file and open it in a text editor.
- Search for the following line in the php.ini file:
;extension=zip
- Remove the semicolon at the beginning of the line to uncomment it:
extension=zip
- Save the changes and close the file.
- Restart the Apache server in XAMPP for the changes to take effect.
After following these steps, the zip extension should be enabled in XAMPP and you should be able to use it in your PHP scripts.