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 tag is used to include external CSS file in web page?
<body> <script> <link><link href="/templ/style.css" rel="stylesheet" type="text/css" />
Which CSS property sets the text size?
font-weight text-decoration font-sizeh2 {
font-size: 1em;
}
Indicate the JavaScript property that can add HTML code into an element.
text value innerHTMLdocument.getElementById("someID").innerHTML = "HTML content";
Click on the function that returns the number of characters of a string in PHP.
count() strlen() stristr()$str = "http://CoursesWeb.net/";
$nr_chr = strlen($str);
echo $nr_chr; // 22