Jun 30, 2013
Posted by
Unknown
3
comments
|
5:55 AM
Today lesson is about how to insert data to mysql table using php mechanisms. In last two lessons we learned about how to make a connection and how to create a database and tables. if you have any problems with those things you better read last posts before go through this.
There is no much different between creating table it is just sql string. Lets look at the code.
//make connection
$con = mysql_connect("localhost","root","123");
//check...
Jun 29, 2013
Posted by
Unknown
No comments
|
5:57 AM
In the last lesson we learned about how to make a connection to mysql database. To create either database or table first we need to make a connection to the database server.
Please read last post if you don't know how to create the connection to mysql server.
Creating a Database
We have to use new method to execute sql queries.
mysql_query(connection,sql query sting)
connection- return value of mysql_connect() function
Sql query string...
Jun 28, 2013
Posted by
Unknown
No comments
|
8:29 AM
Lets connect mysql database using php. there is some special php functions for this..
mysql_connect(host,username,password)
Host - host is optional its host name of mysql database. most of the time its localhost
username - mysql username
password - mysql password
There is a another function to do this.
mysqli_connect(host,username,password,dbname)
Note : it is mysqli_connect() this is new method php introduced "i" stands for improvements...
Jun 23, 2013
Posted by
Unknown
11
comments
|
9:45 AM
Today we gonna talk about how to work with radio buttons using php. a sample radio button image is bellow. Lets create a sample HTML code.
File name : radio.html
<html>
<head>
<title>radio form</title>
</head>
<body>
<form name="radiobtnform" method="post" action="process.php">
<form name="radiobtnform" method="post" action="process.php">
<label>Gender : </label>
<input...
Jun 21, 2013
Posted by
Unknown
3
comments
|
9:43 AM
Today we talk about how to work with forms in PHP.. lets make a simple form using HTML
<html>
<head>
<title>my form</title>
</head>
<body>
<form name="myform" action="" method="post">
<lable> Enter Your Name : </lable>
<input type="text" name="name"/>
<input type="submit" name="submit_btn" value="Hit on me !"/>
</form>
<!-- PHP Part begins after this line -->
Note-...
Jun 20, 2013
Posted by
Unknown
No comments
|
12:04 AM

Today lession is how to work with PHP arrays. An array is a variable which can store number of values at once
<?php
$phones = array("nokia","sony","samsung");
echo "Phones : ".$phone[0].",".$phone[1]." and ".$phone[2];
?>
result - Phones : nokia , sony and samsung
We can count number of values in the array using count() function.
<?php
$phones = array("nokia","sony","samsung");
echo "Phones : ".$phone[0].",".$phone[1]." and ".$phone[2];
echo...
Jun 17, 2013
Posted by
Unknown
No comments
|
4:08 AM
PHP also has if else , while , do while and for statements.
lets see how to write a simple if else statement. i am not going to talk in depth about this statements since php statements are same as other programming languages
<?php
$today = date_format(date_create(date("y-m-d")), 'l');
echo "Today is : ".$today."<br>";
if ($today != 'sunday' or $today != 'saturday')
{
...
Jun 14, 2013
Posted by
Unknown
1 comment
|
8:45 PM

Variables are use for storing values, like string numbers or arrays. when a variable declared, it can be used over and over again in your script.
Note : All Variables in PHP start with a $ sign symbol
example : $my_variable = 100;
-----------------------------------------------------------------------------------------------------------
PHP is loosely typed language
In PHP, a variable dose not need to be declared before adding a value...
Jun 13, 2013
Posted by
Unknown
No comments
|
11:34 AM
Video Tutorial in sinhala For more sinhala video tutorials visit http://myphpvideo.blogspot.com
Comments in PHP
...
Jun 11, 2013
Posted by
Unknown
28
comments
|
12:08 PM
Video Tutorial in sinhala
For more sinhala video tutorials visit http://myphpvideo.blogspot.com
How to start coding with PHP
Normally we are writing PHP...
Posted by
Unknown
No comments
|
11:56 AM
What You Should Already Know
Before you continue you should have a basic understanding of the following:
HTML
JavaScript
If you want to study these subjects first, find the tutorials on our Home page.
What is PHP?
PHP stands for PHP: Hypertext Preprocessor
PHP is a widely-used, open source scripting language
PHP scripts are executed on the server
PHP is free to download and use
PHP is simple for beginners.PHP also offers...
Subscribe to:
Posts
(
Atom
)