In this lesson i will show you how to create mysql database and to do that we will use as always the appserv
and for this lesson i have been used a video so i hope you enjoy
...
Thursday, August 8, 2013
Thursday, July 18, 2013
php for beginners
In this article I will make sure that every beginner want to learn php can start from here
So this is the index of what you should learn first
1-What you need to start
2-The syntax
3-PHP variables
4-PHP variables some operations
5-The condition statment
6-PHP switch statment
7-PHP arrays
8-PHP...
Labels:
php for beginners
Saturday, July 13, 2013
PHP Cookies The Basics
We experience that php cookies Webpages are arresting revealed exploitation homeless communications protocol. Soh at that place ought cost in some way since continuing the school term of the exploiter piloting the webpages inside a php cookies site. Academic term variable star* and Cookie variable star* could embody expended...
Labels:
php cookies
Friday, July 12, 2013
How to create a php email form?
A identical crucial component php email form from the altogether functionality from the cast embodies the activity parametric quantity. These constitutes fundamentally wherever completely drug user stimulant costs forwarded to later the visitants beseeches the defer border. Making and presenting php email form script the configuration...
Labels:
php email form
,
php email form script
Friday, July 5, 2013
php filter var

php filter var
In this lesson we will talk about how to filter variables in PHP
But why we need to filter variables, well let me give you an example:
when someone want to enter his gmail account or facebook account he will enter his email and his...
Labels:
php filter var
Sunday, June 30, 2013
php fopen and how to use it

php fopen function and how to use it with files
In this lesson we will talk about how to deal with files in php, first let's create a text file and name it "text.txt", write whatever you want in it
After that we will use php...
Thursday, June 27, 2013
include php in html

include php in html
In this lesson we will talk about include function and how to use it, so let's go
First include function are used to insert a php file into an html file or another php file and it will be executed with the rest of the code in the...
Labels:
include php in html
Wednesday, June 26, 2013
php simple programs - 1st degree equation solver

php simple programs
In this lesson we will take a php simple program which can be used to solve 1st degree equations based on what we have learned so far,Let's go
This is the whole code
<style type="text/css">
#e1 {
border:medium;
float:center;
...
Labels:
php simple programs
Tuesday, June 25, 2013
php date time

php date time
In this lesson we will talk about php date time and how to use time and date in php, we will use a function
called date and this function require three or six parameters days,months,years,hours,minutes,seconds
<?php
echo...
Labels:
php date time
php post get

php post get
This lesson will be short be cause i will talk about the php post get and the difference between the post function and the get function, and we will use the form of the last lesson php forms example
The code was like this
<?php
$username= $_POST['user'];
$password= $_POST['password'];
echo...
Labels:
get post php
,
get vs post php
,
php post get
,
php post or get
Sunday, June 23, 2013
php form example - php forms

php form example
What is an form in php? actually the forms are in html not in php but when we put a form in html the php handle all the operations about that form
For example you want to enter your facebook account what you should do?
Of course you...
Labels:
php form example
,
php forms
Friday, June 21, 2013
php functions
php functions
what is a function in php?
A function in php is a set of codes that we want to execute it.:
function name of function(parameter)
{
what we want to do
}
The parameter is like a variable, you will understand when we do the example.
But what is the importance of a function? To know that lets do an example.
We want to...
Labels:
php functions
Thursday, June 20, 2013
php for loop - foreach php

php for loop
In this lesson we will talk about php for loop, there are fore type of loops in php
while,for,do..while and foreach we will talk about for loop in this lesson
for (init, condition, increment)
{
what we want to repeat;
}
init: the variable...
Labels:
foreach php
,
php for loop
Tuesday, June 18, 2013
php arrays

php arrays
What is an array, array in php is a variable which can store many values, there are three types of php arrays
Numeric array : array with a numeric index
Assosiative array : array where their values indexed with specific ID
Multidimensional...
Labels:
php arrays
Monday, June 17, 2013
php switch statment

php switch
In this lesson we will talk about switch statment and what does it mean and what it can do, before we start write the code let us give an example first, we want to make a calculator that can do this operations (+,-,*,/)
we can write the...
Labels:
php switch
php if else

php if else
In this lesson we will talk about php if else and what does it mean and what we can do with it
so if statement are using to verify a particular condition after it, for example
if you are not busy bring me a cup of coffee, the...
Labels:
php if else
Sunday, June 16, 2013
php variables - some operations
In this lesson we will talk about operations in php and take some examples, Ready let's go
EXAMPLE 01:
<?php
$n1 = "12" ;
$n2 = "4" ;
echo "$n1" + "$n2" ;
?>
You should see 16 on the screen
EXAMPLE 02:
<?php
$n1 = "12" ;
$n2 = "4" ;
echo "$n1" * "$n2" ;
?>
You should see 48 on the screen, easy don't you think
When...
php variables

php variables
In this lesson I will talk about variables in php, and firstly i will describe what is a variable in php
A variable in php start with $ sign and the name of the variable
For example $pass = 12;
In this example we have define a...
Labels:
php variables
php sample programs - the syntax

php sample programs:
Today we will start our first program but we must have a little knowledge of html, some basics things that's all, so let's go
Always the php code start with this tag <?php and ended with this one ?>
Now let's write...
Labels:
php sample programs
php knowledge base - what you need to start?

php knowledge base
In this lesson i will talk about all things that you need to start creating php codes and the first thing you will need is a local host and what does this mean, well its mean that you need a server to compile php codes because php...
Labels:
php knowledge base
Subscribe to:
Posts
(
Atom
)