Showing posts with label PHP. Show all posts
Showing posts with label PHP. Show all posts

Saturday, October 11, 2014


Hello Everyone today i will create new post. In this post, we will implement prepared statement for insert and update data. I will show simple example.
prepare($sql);
$q->execute(array(':author'=>$author,
                  ':title'=>$title));


?>

Example for update data:
prepare($sql);
$q->execute(array($title,$author,$id));


?>
PHP

PHP PDO Insert and Update Data in mysql Database

Posted by Unknown  |  No comments


Hello Everyone today i will create new post. In this post, we will implement prepared statement for insert and update data. I will show simple example.
prepare($sql);
$q->execute(array(':author'=>$author,
                  ':title'=>$title));


?>

Example for update data:
prepare($sql);
$q->execute(array($title,$author,$id));


?>

10:27 PM Share:

Friday, August 15, 2014

Hi
Today I will showing How to create PHP to JSON Data. It's Easy and simple

PHP Code 

<?php

    $Arraydata= array("UserDetails" => array(array("name" => "Khaled", "age" => "18")), "WorkDetails" => array(array("company_name" => "My Company", "role" => "web application developer", "employees" => "91")));
    $json_encode = json_encode($Arraydata);
    echo $json_encode."<br/>";

 ?>

Output 

{"UserDetails":[{"name":"Khaled","age":"18"}],"WorkDetails":[{"company_name":"My Company","role":"web application developer","employees":"91"}]}
PHP

PHP Data to Make JSON

Posted by Unknown  |  No comments

Hi
Today I will showing How to create PHP to JSON Data. It's Easy and simple

PHP Code 

<?php

    $Arraydata= array("UserDetails" => array(array("name" => "Khaled", "age" => "18")), "WorkDetails" => array(array("company_name" => "My Company", "role" => "web application developer", "employees" => "91")));
    $json_encode = json_encode($Arraydata);
    echo $json_encode."<br/>";

 ?>

Output 

{"UserDetails":[{"name":"Khaled","age":"18"}],"WorkDetails":[{"company_name":"My Company","role":"web application developer","employees":"91"}]}

8:27 AM Share:

Thursday, July 31, 2014

Hi Friend, Today I will showing how to create visitor counter using php. it's easy to use any website. Its simple code just copy and past.


http://adf.ly/qjMH0
PHP

How to Make Visitor Counter using PHP

Posted by Unknown  |  No comments

Hi Friend, Today I will showing how to create visitor counter using php. it's easy to use any website. Its simple code just copy and past.


http://adf.ly/qjMH0

2:33 AM Share:

Sunday, July 27, 2014

Today I will showing, How to create Voting system without database using only php,jquery and txt file. I'ts easy to create any voting system.




Download Source Code : (this source code upload your server and run voating.php file)
http://adf.ly/qd3cx

PHP

Voting System with Jquery PHP

Posted by Unknown  |  No comments

Today I will showing, How to create Voting system without database using only php,jquery and txt file. I'ts easy to create any voting system.




Download Source Code : (this source code upload your server and run voating.php file)
http://adf.ly/qd3cx

7:23 AM Share:

Tuesday, July 22, 2014

Hello,
How are you, today i will showing how to create member login php script without database. only using txt file. you save all member login details this txt file. it's easy to create login system.

Setup Step :
   1. Create New Folder
   2. Create New Txt File (member.txt)
   3. Copy and past this code new file on same folder

Download Full Script 
http://adf.ly/qVlym
PHP

PHP User Login script without Database

Posted by Unknown  |  No comments

Hello,
How are you, today i will showing how to create member login php script without database. only using txt file. you save all member login details this txt file. it's easy to create login system.

Setup Step :
   1. Create New Folder
   2. Create New Txt File (member.txt)
   3. Copy and past this code new file on same folder

Download Full Script 
http://adf.ly/qVlym

12:53 PM Share:

Wednesday, July 16, 2014


Today i will showing how to make a custom language data time system using php.


PHP

How to make a custom language date and time

Posted by Unknown  |  No comments


Today i will showing how to make a custom language data time system using php.


11:36 AM Share:

Today i will showing how to covert english week name to covert any language week name using php.
it's simple way to create this function. 
PHP

How to Create English day name to Farnch day name using php

Posted by Unknown  |  No comments


Today i will showing how to covert english week name to covert any language week name using php.
it's simple way to create this function. 

7:55 AM Share:

Tuesday, July 8, 2014

Today I will writing, how to create a simple Ajax PHP login with welcome page using MySQL database. This will explain you creating user tables, posting form values and storing and destroying the session values.

PHP

PHP Ajax Login With Shake Animation Effect.

Posted by Unknown  |  No comments

Today I will writing, how to create a simple Ajax PHP login with welcome page using MySQL database. This will explain you creating user tables, posting form values and storing and destroying the session values.

11:42 PM Share:

Open a Connection to the MySQL Database

After you can access data in your database, we must open a connection to the MySQL Database.

In PHP, this is done with the mysql_connect() function.

Example :


host = Type a host name or an IP address
username = Enter MySql User Name
Password = Enter Mysql Password
PHP

PHP Connect to the MySQL Database

Posted by Unknown  |  No comments

Open a Connection to the MySQL Database

After you can access data in your database, we must open a connection to the MySQL Database.

In PHP, this is done with the mysql_connect() function.

Example :


host = Type a host name or an IP address
username = Enter MySql User Name
Password = Enter Mysql Password

8:02 AM Share:

Visitors Counter

Flag Counter

Recent Post

Popular Posts

Proudly Powered by Blogger.
back to top