Posts by José • 374 points
7 posts
-
5
votes3
answers139
viewsQ: Difference between attr=val, attr="val" and attr='val' in Javascript?
There is some difference in using the selector in the following ways, or one that is "correct"? [name="val"] [name='val'] [name=val]
-
9
votes1
answer16141
viewsQ: CMD, Powershell, Bash - What’s the difference?
There are differences between them, which? I’m talking about Ubuntu’s Bash. I’m curious because to me they seem to do the same thing!
-
-3
votes1
answer566
viewsQ: Combination of languages that have a better performance for Web
Many use PHP + HTML to create web pages, but it’s not the same with large websites like "social networks" (Facebook, Youtube, Instagram, Linkedin, etc...). So I would like to know which are the…
web-applicationasked José 374 -
10
votes1
answer347
viewsQ: Remove extensions that I don’t use would impact PHP page execution performance
I installed PHP through the Web Platform and it came with several extensions loaded: php.ini [ExtensionList] extension=php_mysqli.dll extension=php_mbstring.dll extension=php_gd2.dll…
-
2
votes2
answers69
views -
5
votes2
answers564
viewsQ: Is there a difference in using constants or variables in Classes?
There is a difference in using constants or variables in Classes?
-
3
votes3
answers134
viewsA: Give a value for radio input not selected
Friend I believe that if you do this way is more efficient: foreach ($_POST["respostas"] as $value) { switch (trim($value)) { case "": case null: $valor = 0; break; default: $valor = 1; } echo…