


Example of simple reading of mysql by php, phpmysql example_PHP tutorial
An example of php simply reading mysql, phpmysql example
Reading mysql database
Example.
Copy the code as follows
$link=mysql_connect("localhost","root","previous administrator password");
if(!$link) echo " No connection successful!";
mysql_select_db("infosystem", $link); //Select database
$q = "SELECT * FROM info"; //SQL query statement
mysql_query("SET NAMES GB2312 ");
$rs = mysql_query($q); //Get the data set
if(!$rs){die("Valid result!");}
echo "
Department name | Employee name | PC name |
$row[1] | $row[2] | < td>$row[3]
mysql_free_result($rs); //Close the data set
?>
Chinese display garbled problem
When we access the MySQL database through PHP in the original way, even if we set the default character set of the table to utf8 and send the query through UTF-8 encoding, you will find that the data stored in the database is still garbled.
In fact, the simplest way (www.111cn.net) is to set it up through phpMyAdmin.
Set the following items:
1: The language is set to chinese (zh-utf-8)
2: MySQL character set: UTF-8 Unicode (utf8)
3: MySQL connection proofreading: utf8_general_ci
4: When adding a new database and data table, select utf8_general_ci
With the above settings, Chinese characters will not be garbled when operating and querying in phpMyAdmin.
But you will find that the results obtained by using the previous SQL statement in the PHP program are still garbled. The problem lies in the connection layer.
The solution is to send a query statement after successfully connecting to the database:
Copy the code as follows
1: $this->LinkID = mysql_connect($this->Host, $this->User, $this->Password);
2: mysql_query( 'SET NAMES 'utf8'', $this->LinkID);
or:
DEFINE ('LINK', mysql_connect (DB_HOST, DB_USER, DB_PASSWORD));
mysql_query("SET NAMES 'utf8'", LINK);
gbk encoded
Copy the code as follows
$mysql_mylink = mysql_connect($mysql_host, $mysql_user, $mysql_pass);
mysql_query("SET NAMES 'GBK'");
from:http:/ /www.111cn.net/phper/php-database/57069.htm
if(isset($ _POST['tj']))//If you click submit
{
$conn=mysql_connect("localhost","username","password");
mysql_select_db("eastses" ,$conn);
mysql_query("set names utf8",$conn);
date_default_timezone_set("asia/chongqing");
$sql = "INSERT INTO `eastses`.`classmate` (` id`, `name`, `nickname`, `birthday`, `home`, `blood`, `qq`, `weibo`, `email`, `phone`, `hobby`, `food`, `sentence` , `gift`, `lover`, `keenon`, `unforgettable`, `wanttobecome`, `ideal`, `other`) VALUES ('".$_POST['id']."', '".$_POST ['name']."', '".$_POST['nickname']."', '".$_POST['birthday']."', '".$_POST['home']."' , '".$_POST['blood']."', '".$_POST['qq']......The rest of the text>>
If your database is set up, it’s easy. Use PHP to connect to your database!
$link = mysql_connect('localhost','user','pwd');//Your database username and password
mysql_query('set names utf8'); Set character set
mysql_select_db(' db');//Select your database
$sql="Here is your sql statement";
mysql_query($sql);//Send sql statement
mysql_close();//Close the connection

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

One of the major changes introduced in MySQL 8.4 (the latest LTS release as of 2024) is that the "MySQL Native Password" plugin is no longer enabled by default. Further, MySQL 9.0 removes this plugin completely. This change affects PHP and other app

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

Validator can be created by adding the following two lines in the controller.

CakePHP is an open source MVC framework. It makes developing, deploying and maintaining applications much easier. CakePHP has a number of libraries to reduce the overload of most common tasks.
