PHP
3 mins read

PHP Image upload , Saving link to Database complete tutorial

This blog is dedicated to all our visitors who asked me to publish a working tutorial on  image upload  using PHP and Saving its path to Mysql Table. How to do that : First we will create a file called install.php , it will create a database called myimages and a table  named imgtables and […]

MySQL
2 mins read

My way learn MySQLI and PHP by examples

MySQL is world most used database and when its works PHP then they have no match. Learning MySQL is very is one can found thousand of tutorial on net but these are now old as MySQLI(or MySQL Advanced) next version are now on demand as implementation is easy, secure and little bit faster. In this […]

PHP
3 mins read

Upload user profile image and save to data base -PHP MYSQLI

 If you are working on customized CMS or Social networking website then user profile image may be or may not be a head ache I have developed my own where we can upload and rename the image username.jpg/png/gif with size restriction to 200KB. First design a table where database name is Sanjay. Create a table […]

PHP
1 min read

PHP Do While Tutorial with Working Example

On reaching the control to do statement, the program proceeds to evaluated the body of the loop first. At the end of the loop, the test-condition in the while statement is evaluated,so it is categorized as post tested loop. The basic format of do while() statement is: do{ body of the loop }while(test-conditon);Lets have a […]

PHP
2 mins read

PHP Switch Statement Tutorial with Practical Example

What is PHP Switch Statement? According to php.net The Switch Statement is similar to a series of IF statements on the same expression. In many occasions, you may want to compare the same variable (or expression) with many different values, and execute a different piece of code depending on which value it equals to. This […]

PHP
2 mins read

Learn PHP Preg_match with working Example

preg_match is a wonder ful function of PHP( 4,5,6) to Perform a regular expression match. Its little bit difficult to learn but extremely useful when you properly understand it. Extensively use to extract string in SEO process, in validation of E-mail ID and so its impossible for me to describe its utilization in PHP Development. […]

PHP
1 min read

Lets enjoy power of PHP Function

function(): A set of specific program and source code which complete a specific task is function. Function separates the complexity of a large program and provides a modular approach. There are two type of function user define function and library function. Now focus on user defines function and try to understand.   Syntex of PHP […]

PHP
2 mins read

PHP File Uploading easy to learn tutorial with complete script

PHP is world’s no. 1 server side scripting language, it comes with plenty of features and one of the most famous one is file uploading which is extensively used world wide. Self Explanatory PHP File Uploading Example First Create a directory called  gallary/ . Save this file as gallery.php <!DOCTYPE html> <html lang=”en”> <head> <title>File […]

CSS
2 mins read

HTML FORM tutorial with CSS based Example

FORMS are used to pass data to a server and contain input elements like text, check box, radio, button, submit, reset, password. A form is incomplete with out input box . Data sent to server through forms using input elements  and executed on the server.Lets have a example of a form <form action=”name.php” method=”post”> <input […]