Well I'm learning Laravel and I was left with a doubt following some tutorials.
At certain times within view the tag is used: <?php foreach($produtos as $p): ?>
and when will I get the data <?= $p->nome ?&g...
What is the difference between static and self ? Exemplify with situations that justify their different uses. What does this have to do with late static binding ?
I need a web system, including the PHP server itself, as well as MySQL to be "packaged" in an executable file, which allows the lay user to use it in a kind of browser of their own. What steps would you need to take to make this system distribut...
I was looking at a website to add in a C # application, I noticed a link similar to this:
www.site.com.br/index.php?post=yes;user=1521;
The parameters are separated by ; (semicolon). I accessed the same page by changing the ;...
I see some discussions about the use of "Sessions" not being scalable, but as I have not experience in projects large enough to realize this, I do not know how it works.