Posts by Raphael Cleto • 76 points
2 posts
-
0
votes2
answers484
viewsA: How to pass varivlle from a PHP file to another PHP file
To use a variable defined in another file in the current file, you must use the declaration include. PHP: include - Manual Example of use of the statement php. <?php $primeiroNumero = 1; ?>…
-
6
votes4
answers1235
viewsA: Does the order of CSS styles influence the render tree?
In accordance with Article Quantum Up Close: What is a browser engine?, the browser engine reads the entire CSS style sheet to then finally use the style engine and take CSS to apply to the DOM that…