How i can protect my php script

Hello, how i can hide my php script so that it cannot be stolen from user who will use it ?
I have database and hosting.
Can something be created ?

PHP files are server side files and unlike JavaScript can not been seen by a user. The only way someone can see the files is if they have access to your domain on the server or are a good hacker. The later is the reason to write secure clean PHP code and using PHP internal security functions rather that trying to create your own. Nothing is 100 percent secure, but learning to code properly is more important in how to protect the files themselves. That is why JavaScript should never be used for security features for a website such as validating passwords by itself as that can be easily bypassed by someone who knows what they are doing.

1 Like
Sponsor our Newsletter | Privacy Policy | Terms of Service