How to update data in a database?
You have learned to insert, retrieve and delete data from a database. In this lesson, we will look at how to update a database
How to delete data from database?
you have learned to insert and retrieve data from a database. In this lesson, we'll look at how to delete records in the database, which is considerably easier than inserting data.
How to get data from database? SQL queries
Now it's time to retrieve data from our database to our PHP pages. This is really one of the most important lessons in this tutorial.
Insert data into a database free tutorial
we look at how you can insert data into the database directly from your PHP scripts. Insert data using SQL You use SQL to insert data in a database in the same way that you can use SQL to create databases and tables.
Create databases and tables free tutorial
We looked at how to create a connection to a database server. Next step is to create databases and tables.Connection to database server free tutorial
A database is a collection of information / data that is organized so that it can easily be retrieved, administrated and updated.
Php Writing to a text file free tutorial
we learned to read from a text file. In this lesson, we will learn to write to a text file.
Reading from a text file PHP free tutorial
We learned how to use PHP to access the server's filesystem. In this lesson, we will use that information to read from an ordinary text file.
Learn Php Filesystem free tutorial
With PHP, you can access the server's filesystem. This allows you to manipulate folders and text files in PHP scripts.
What is a cookie? How is information stored in a cookie? How do you retrieve the value of a cookie?
Backlinking is a method that webmasters use to help increase their relevance on the internet, largely for Search Engine Optimization (SEO) purposes.
Three simple steps: how to get good backlinks
How and what kind of information websites are collecting from their users, and especially how they use it, is a hot topic.
Learn Php Sessions with example?
When you visit a website, you do a number of different things. You click from one page to another. Perhaps you also fill out a form or purchase a product.
Php Passing variables in a URL. How does it work?
When you work with PHP, you often need to pass variables from one page to another.
PHP function? What is a function?
you have learned to use functions like date() and array(). In this lesson, you will learn to create your own functions using function.
PHP Arrays? What is an array? How do you use an array?
we will look at what an array is, how it is used, and what it can do. Understanding arrays can be a little difficult in the beginning.
How do you insert comments?Why is it important to comment your scripts?
Why is it important to comment your scripts? When you are coding, you are writing commands to a server/computer and need to use a highly formal language that may not clearly reflect your thoughts when making the script.
Learn Php conditions (If, if else, if else else, switch else)
Conditions are used to execute part of a script only if some predefined requirements (conditions) are fulfilled. For example, a condition could be that a date must be after January 1, 2012 or that a variable is greater than 7.
How to create Loops in php? php loops
In PHP, it is possible to manage the execution of scripts with different control structures.
PHP Time and date functions, Working with time and dates
In this lesson, we will try to look at the many different options for working with time and dates in PHP.
How to create PHP Scripts? Your first PHP page
you now know a little about what PHP is, and you've installed (or have access to) a server. Now we are ready to begin making our first PHP page.
How to Install PHP on your computer?
PHP is a server-side technology. Therefore, you need to have a server to run PHP. But it doesn't need to cost you anything to make this upgrade and there are several options for doing so.
What is PHP? How does PHP work?
It is precisely these questions we will look at in this lesson. It's a big help to understand such basics related to PHP before you start developing you own PHP pages.