Insert Data into Database using PHP MySQLi

In this tutorial we will see how to Insert Data into Database using PHP MySQLi. First we create a database then table after that we start to insert data into database table using php mysqli.Mysqli is extended version of MySQL. We will use mysqli to access mysql database. To insert data in database table we … Read more

Add WYSIWYG HTML Editor to Textarea on Your Site

Add WYSIWYG HTML Editor to Textarea on Your Site

WYSIWYG stands for What You See Is What You Get. WYSIWYG HTML Editor is basically JavaScript rich text editor which allows user to enter formatted text . This is basically on textarea so that website user can easily create content and do its formatting. In simple textarea user can simply write text but they can’t … Read more

Simple Calculator in PHP

Simple Calculator in PHP

In this tutorial we will see how to create a simple calculator in PHP. Our calculator will do all basic arithmetic operations like addition,subtraction, division and multiplication. In this process I have used two input box to enter operands for mathematical operations and used one select box to choose operators.   Calculate button is used … Read more

PHP Form Validation

PHP Form Validation

In this article we are going to see how to validate a HTML form using PHP. We have already written about how to validate form using jQuery. Server side form validation is used for additional security with client side validation. In this tutorial we will see how to use the HTML contact form on the … Read more

10 Basic PHP String Functions

10 Basic PHP String Functions

In this tutorial, we are going to see 10 basic and important string functions in PHP. String is basically a sequence of character. In this tutorial, we will see basic important PHP string functions which are commonly used in PHP. These inbuilt function in PHP are used to perform different operations while using string. Knowledge … Read more