Posts by Kaoe Coito • 44 points
3 posts
-
1
votes1
answer29
viewsA: Search filter with JS
You’re already in the filter iteration so you can do what you want! I suggest changing the name of the internal variable of the userLists filter to another as item, because what it receives is each…
-
-1
votes3
answers346
viewsA: Redirect file access via htacess
The rule itself seems correct, already tried to mark it as passthrough [EN] Type RewriteRule ^(.*)\.txt$ download.php?arquivo=$1 [PT]
-
2
votes2
answers48
viewsA: Mysql - Add values from a column and also bring value from each row
Yes is an acceptable way to do it but in the case of Mysql I recommend using UNION ALL and not UNION because its default is to use the UNION DISTINCT. It is also worth remembering that the behavior…