This option will reset the home page of this site. Restoring any closed widgets or categories.

Reset

Mysql


Page 2 of 212

Php mysql example image gallery blob storage

abstract This is a simple example of photo-gallery script, which uses MySQL table (BLOB field) to store images. Trivial password-protection, uploading and deleting images are supported. For Apache-version of PHP there is advanced browser-caching support (using If-Modified-Since header). compatible PHP 4.3.0 or... (Continue reading)

Tagged with:         

How to run a SQL query in phpMyAdmin

How to run a SQL query in phpMyAdmin Objective: In this tutorial, you will learn how to run a query using phpMyAdmin for use in our other tutorials. Step 1: Create a database.Note:-If using cPanel, click MySQL® Databases, and create... (Continue reading)

Tagged with:         

Total Number Of Rows In MYSQL

This tutorial will help you calculate the total number of rows in your MYSQL table with ease using simple php scripts. < ?php $link = mysql_connect("localhost", "root", ""); mysql_select_db("mails", $link); $result = mysql_query("SELECT * FROM mail", $link); $a = mysql_num_rows($result);... (Continue reading)

Tagged with:     

Page 2 of 212