I'm sorry my website hurt your feelings :/
It didn't. I just think it's ridiculous to even say that.
I know. It takes forever to echo it, <td> by <td>.
I'm thinking generating an image might be faster.
Yeah, it would. When you generate an image, please be sure to use
imagedestroy( $my_img );after you're done with the image to allocate space, and to only generate a new image when a change has been made to the map to optimize the web application.
Actually, not XSS - I'd just forgotten to strip_tags.
But yeah, it's fixed now.
Yes it is. You don't even know what XSS is.
XSS is cross-site scripting. Take, for example, my <select> control that has values of up, down, left, or right. It's called "move".
I could hypothetically create my own HTML form that sends post data called "move" with a value of "sukmydik".
That would be XSS.
That's not XSS.
Cross-site scripting, or rather, XSS, is a type of vulnerability that can be found on web applications (Such as your miner game) that allows people to inject client-side script, which is generally malicious, into the page that is viewed by others.
Let's say I put <script>alert("Hi.");</script> into something that will then display it on the page without using anything to prevent XSS. That will make an alert window pop up that says "Hi." for everyone that visits the page. You can do plenty of more to the page such as embedding HTML into the page, redirecting to other pages, and even stealing someone's cookies from their browser.
That is XSS.