Reputation: 787
I'm trying to upload a file to a website, so I can download it later from another location. Is there a way to do this solely by modifying the HTML/CSS code of the website?
Upvotes: 4
Views: 262
Reputation:
html and css are markup language or language that render/format the website depending on the designers wishes, that being said, it is possible for anyone to modify the two for any website as one wishes hence for security purposes i dont think its possible to use them only to upload a a file to a server, u will need a backend scripting language to do that such as PHP or ASP among others
Upvotes: 0
Reputation: 15160
No. Neither HTML nor CSS are programming languages (meaning they allow you to interact with the server and its files) and, if it were allowed, anyone could upload files to a site's server.
Upvotes: 7