php

Keeping Data in the Form after Refreshing the Page Using PHP

Submitted by ronard on
Hi to All, Have a nice day..this script is just a simple that will teach you on how to keep your data in the form by refreshing the page. Just copy the script below in your web server and run to your web browser, Hope this will help you guys..happy codings.. Thanks for reading, please comment below.

PHP/MySQLi Creating a Forum - Part 19 - User Search

Submitted by Yorkiebar on
PHP/MySQLi Creating a Forum - Part 18 - Related Threads Introduction: This tutorial will be continuing my series of creating a forum in PHP/MySQLi/HTML. In this part I will be covering searching for users. Pre-creation: First you will need a host for your PHP, either a web host or localhost is fine but you will need PHP and MySQL(i) capabilities. Also, this will not be covering creating users, or styling the pages.

PHP/MySQLi Creating a Forum - Part 18 - Related Threads

Submitted by Yorkiebar on
PHP/MySQLi Creating a Forum - Part 17 - User List Introduction: This tutorial will be continuing my series of creating a forum in PHP/MySQLi/HTML. In this part I will be covering related threads. Pre-creation: First you will need a host for your PHP, either a web host or localhost is fine but you will need PHP and MySQL(i) capabilities. Also, this will not be covering creating users, or styling the pages.

PHP Type Casting

Submitted by joken on
In this tutorial, we’re going to discuss about PHP Type Casting. We can call Type casting or Type Switching or Type Juggling. The idea here is that, out of all types we’ve been working in PHP such numbers or strings, we can actually switch from one type to another. To start this application lets create a new PHP file called “typecasting.php”. And add the following code. The PHP code below is trying to combine the string value of 10 to 4. Then we echo the variable value and it returns 14 meaning it will able to perform a mathematical operation.