Posts by Dudaskank • 79 points
4 posts
-
3
votes2
answers736
views -
0
votes2
answers99
viewsA: How to compare email and word passes from textboxs to the database
You’re mixing mysqli_ and mysql_functions, don’t do this! It is also not recommended to create Sqls like this, although you use mysqli_real_escape_string. Recommended to use Prepared statements, who…
-
1
votes2
answers264
viewsA: I cannot enable GZIP cache and compression on my website. Why?
You are using two mods for this, mod_deflate and mod_gzip. I think only one is enough, usually staff recommend mod_deflate. About the same problem, it may be that the mods are disabled on the…
-
1
votes3
answers910
viewsA: How to use $.on in pure Javascript: "$(...). on(event, selector, function)"?
This version of the answer works with the element created later. See if the behavior is closer than you need. Note that on jQuery’s on, the event goes up from the clicked target to the element where…