PHP

 

PHP-logo.svg

<em>Server-side HTML embedded scripting language. It provides web developers with a full suite of tools for building dynamic websites.</em>

How to install PHP 5.4, Apache 2.4, MySQL 5.6.19 and phpMyAdmin 4.2 on Windows 7

Step-by-step tutorial on how to install PHP 5.4.30, Apache 2.4.9, MySQL 5.6.19 and phpMyAdmin 4.2.2 on a Windows 7 machine.

 

Laravel

laravel-logo-white

<em>Laravel is a free, open-source PHP web framework, created by Taylor Otwell and intended for the development of web applications following the model–view–controller (MVC) architectural pattern.</em>

Escape text while allowing new lines in Laravel blade

This example shows you how to escape text while allowing new lines in Laravel blade.

Retrieve records older than a specified amount of time in Laravel

You can use the Carbon library with Laravel to easily create an eloquent query that will filter the records based on a given amount of elapsed time.

Access route parameters in a Laravel 5 Middleware

This short article describes how to access the route parameters from a Middleware in a Laravel application.

Laravel – cURL error 60: SSL certificate problem: unable to get local issuer certificate

I have run into this issue when I was trying to configure a Laravel 5.2 application to send emails using Mailgun.

Store who created and last updated a record in Laravel 4

Automatically store who created and last updated a record in Laravel 4 by using model events.