|
|
|
PHP Tutorial
|
What is a database?
A database is a collection of information that integrated logically different types of files and records together in a common place. It is organized in a manner that anyone can be accessed, managed and updated easily.
View Rating |
|
|
PHP Tutorial
|
PHP Hello World
PHP stands for Hypertext preprocessor. PHP has one of the most popular language among the developers. It is a server side scripting language, PHP supports most of the server such as MySQL, Informix, Oracle, Sybase, Solid, PostgreSQL and soon.
View Rating |
|
|
PHP Tutorial
|
PHP Cookies
PHP Cookies is used to sent the information by a web-server to a web-browser and whenever you accesses that server the browser will give you the same result without changing anything. Cookies in PHP is helpful to identify the user.
View Rating |
|
|
PHP Tutorial
|
PHP date function
PHP Date() function is used to display the date and time in a précised format. With the help of PHP date function you can format timestamp to a more readable date and time.
View Rating |
|
|
PHP Tutorial
|
PHP Variables Static
PHP static variable is used to remember the value of a local variable when we call the function in our program. While your script is running a static variable is only retained by the function , but it is NOT shared with the main code.
View Rating |
|
|
PHP Tutorial
|
PHP Variable Outside Function
In PHP Functions, a variable can be called either outside the function or inside the function. If we declare a variable within the function, it will not seen outside the function and if you declare a variable outside the function, it will not seen inside the function.
View Rating |
|
|
PHP Tutorial
|
PHP Null Variables
PHP Null variable is a type that only stores the null value. The Null value indicates that the used variable has no value. The variable only considered null when :
View Rating |
|
|