Laravel is a flexible PHP framework for modern web development, that will make the development process easier and much faster, following the model–view–controller (MVC) architectural pattern.
This Laravel Mini-Course is indicated for web developers that know PHP; it contains tutorials for beginner and average level with examples and codes from what I studied about Laravel from various resources on the internet.
Laravel Tutorials
References
-
Laravel - Documentation
-
Laravel - Tutorials
Daily Test with Code Example
HTML
CSS
JavaScript
PHP-MySQL
Which attribute is used in <img> tag for the address of the image?
href src rel<img src="http://coursesweb.net/imgs/webcourses.gif" width="191" height="63" alt="Courses-Web" />
Which CSS code hides the element on page?
display: none; display: inline; position: relative;#id {
display: none;
}
What instruction stops the execution of a while() or for() statement?
continue prompt() breakfor(var i = 0; i< 8; i++) {
if(i > 1) break;
alert(i);
}
Indicate the function that can create a constant.
define() include() defined()define("CONSTANT_NAME", "value");
echo CONSTANT_NAME;