It seems like you are using an ad blocker. To enhance your experience and support our website, please consider:
- Signing in to disable ads on our site.
- Sign up if you don't have an account yet.
-
Or, disable your ad blocker by doing this:
- Click on the ad blocker icon in your browser's toolbar.
- Select "Pause on this site" or a similar option for lancecourse.com.
All results for php
-
Bad page redirection or Wrong page redirection with WampServer 2.5
Manage the problem of bad page redirection with WampServer 2.5
-
Create your first Desktop Application with PHP and PHP Desktop
Basically any PHP programmer would have liked to create any desktop application. Create an executable (`.exe`) application that he can easily share or sent to his client(s). Any client can simply install the application following an installation wizard without any struggle or any need of the programmer
-
Create simple php variables with extract() function
Here I will be showing you how you can make the use of your arrays in an easy way.
-
PHP Frameworking - Introduction (Part 1)
Learn how to build & maintain websites with ease
-
PHP Frameworking - Routing & Autoloading & Configuration (Part 2)
Respond to different URLs & care less about require statements
-
Create a simple news site with PHP and MySQL using PDO
This tutorial is an update of the existing tutorial on how to create a very simple news site using php and mysql. The aim of this tutorial is to help you understand some basic concepts when using php and mysql. It's also a way for beginner to learn how to put together a full project using dynamic programming concepts and databases.
-
PHP Frameworking - Composer & Controllers (Part 3)
Learn how to autoload the professional way, and how to use controller instead of closures in lancecourse router.
-
Simple Login script with PHP
in this tutorial I will show how to create a login script using PHP and MYSQL. The local server used in this tutorial is XAMPP.
-
Add Remember me and Forgot password in your sign in form.
Add \"Remember me\" and \"Forgot password\" in your sign in form.
-
PHP Frameworking - Templating (Part 4)
Welcome to PHP Frameworking tutorial part 4, after a while we're back to our series of PHP enlightment.
-
How to upload images and files using php
I intend in this tutorial to give you some clear steps and keys that can help you in understanding how that can be done in the simplest way.
-
Laravel for Tortoises - part 1: What is a php framework?
A concise tutorial on Laravel framework.
-
Laravel for Tortoises - part 2: The Prologue
A tutorial to help you take over the Laravel PHP framework with the right hand.
-
Laravel for tortoises - part 3: Installation in toto
How to install Laravel PHP framework and run it.
-
Laravel for Tortoises - part 4: Routing
Create a company website in less than a hour with Laravel framework.
-
How to start your own PHP MVC framework in 4 steps?
Create a simple, light, home-made, and yet powerful PHP framework for yourself.
-
Your First Code In Object Oriented Programming With PHP
Hi everyone, I am back with a new tutorial on Object Oriented Programming(OOP) with PHP.
-
From MySql to PDO - CRUD with PDO
Since you are used to MySQL, it may be a bit complicated to change into PDO. I am writing this guide in order to help you do the common tasks you are used to with MySQL.
-
Create a Professional Desktop Application With PHP And PHP Desktop
Create a clean and professional desktop software with PHP and PHP Desktop: a case of a Hospital management software.
-
Make your first CRUD with PHP: case of a product management system
PHP is probably one of the easiest programming languages to learn. But in this aspect resides many traps which prevents many people from really coding in PHP.
-
Make your first CRUD with PHP - Part 2 : Admin login panel
Here we are in the second part of this tutorial. As I said in part 1 today I will be building the admins login panel.
-
Make your first CRUD with PHP - Part 3: CREATE
In most cases applications are meant to treat/process data. No matter the data the application processes or no matter how it does it, there are some common points any application considers: the data input phase, processing phase, and an output phase.
-
Understand and use functions in PHP
Likewise in any programming language functions are fully part of the PHP programming language. It help access core actions of the language and also to extend it easily. And the real power of a programming language comes from its functions.
-
Make your first CRUD with PHP - Part 4: Read, Update and Delete
Today we're going to see how we can READ, UPDATE, and DELETE data with PHP and MYSQL. And the previous part we saw how we could create new entries
-
Understand and use functions in PHP: Part 2
One of the main advantages of functions is to help us cut the big problem(entire software) into little ones, which can easily be maintained.
-
Workouts with Slim 3
Slim is a light-weight framework that can be used to develop websites and HTTP APIs of any type, and of any size.
-
Workouts with Slim 3 - Part 2: Your first application
With this it could just take you some few hours to have a simple website done. In the next part we will be talking more about the routing.
-
Workouts with Slim 3 - Part 3: Routing
Today I will be taking you through how to use routes and what are their main characteristics.
-
A takeover of PHP Closure and anonymous functions
An anonymous function is a nameless function. A closure is a variable containing an anonymous function: Closures and anonymous are something I found hard to learn in the whole PHP ecosystem...
-
Composer - your first class
Composer is great tool that has been around for few years now and there are still millions of people who don't know what it's used for and why it should be used.
-
PHP Objects with wrong Traits
What are traits in PHP? Have you ever wondered why and when you should use them? In this post I have tried to answer to these question.
-
Start with PHP Exceptions
If you've been developing applications for a while you should've heard of Exceptions or at least Errors. Two phenomenon that are common to all programming language and to which all programmers are used to.
-
Learn how to use PHP sessions
In this post I will take you through sessions. We'll see what sessions are, why and when do we need to use sessions, all with examples.
-
How to use PHP to consume a RESTful API using SausageHTTP
This article will be explaining briefly what an HTTP request is and how to use it to consume a RESTful API.
-
Web development on GNU/Linux
Once you get into Linux, then open software is at your door. This article looks at some of the nuances of using Linux for web development.
-
A Quick intro to testing PHP code with PHPUnit
Unit testing is a software testing process to ensure that every code block produces the results it's expected to. Learn in this article how to do that with PHP and PHPUnit.
-
5 tricks to shorten your if and if-else statements
Having many `if-else` statements is not a sin, but it has some disadvantages in some circumstances such as code readability and the speed.