Home Backend Development PHP Tutorial 初学入门 PHP 和 MySQL_PHP

初学入门 PHP 和 MySQL_PHP

Jun 01, 2016 pm 12:42 PM
echo idx getting Started us

  我想要使用PHP和MySQL,但是如何安装和运行呢?什么是最基本的事情我应该知道的,以便让一个简单的PHP - MySQL应用程序工作?
  这是一个基本的教程。没有怪异的代码,只是一些基础。
  多说一句,现在有大量的教程是基于UNIX机器的,这个教程将集中在基于Windows平台上。然而,除了安装部分,有或多或少的针对于Windows的说明外,其它部分对所有的平台都是一样的。
  在这个教程中,我们将一步一步地建立一个小的网站,使用了PHP和MySQL的下面特性:
  1. 查看数据库;
  2. 编辑数据库的记录;
  3. 修改数据库的记录;
  4. 删除数据库的记录。
  我们将同时学习MySQL和PHP,一起去感觉它们。
  第一节 - 收集和建立必要的项目
  好,开始工作。为了开始PHP-MySQL我们需要一些准备:
  1. 运行web服务器;
  2. 增加PHP扩展;
  3. 运行MySQL。
  第一步,得到和安装Web服务器
  让我们假设一下在你的机器上已经有一个运行着的web服务器。在Windows下有几个好用的web服务器应用程序。要注意一件事,为了运行php/mysql你所选的web服务器应当可以支持扩展。
  一个在Windows上最容易安装的服务器是OmniHTTPd(http://www.omnicron.ab.ca/httpd/,它是一个非常好的自由web服务器。
  一旦你从站点上得到了安装文件,双击它并且安装web服务器。如果你在安装时全部选择了使用缺省值,那么你将会把它安装在c:\httpd下。一旦安装成功,安装程序将启动web服务器,带有一个欢迎窗口,在windows的系统托盘中可以看到一个新的图标。
  好了,第一步做完了。
  第二步,下载和安装PHP发行版
  得到PHP Win32发行版很容易:只要去http://www.php.net/download-php.php3,并且选择一个最好的位置就可以了。
  在OmniHTTPd上安装PHP非常简单。
  最先Unzip安装文件到你的硬盘上,比如展开在c:\php。
  拷贝文件'php3.ini-dist'到你的'%WINDOWS'目录下去,并改名'php3.ini'(在Win95/98为c:\windows,在WinNT/Win2k为c:\winnt)。
  按下面编辑php3.ini文件:
  改变'extension_dir'设置为你的PHP安装目录(c:\php),或存放'php3_*.dll'的目录。
  选择想在PHP启动时装入的模块。你应该将'extension=php3_*.dll'行的注释去掉来装入这些模块(一定要确认去掉了extension=php3_mysql.dll的注释)。一些模块要求有额外的库安装在你的系统上才能正常工作。
  PHP问答集(http://www.php.net/FAQ.php3)有更多关于如何得到支持库的信息。你可以通过使用:dl("php_*.dll")动态地装入一个模块。
  PHP扩展库以'php3_'为前缀。这个可以防止在PHP扩展与它们的支持库之间发生混淆。
  现在跟着简单的步骤配置OmniHTTPd:
  在系统托盘中右击蓝色的OmniHTTPd图标,选项属性(Properties)项;
  点击Web Server Global Settings项;
  点中'External'tab标签。现在,在"Virtual"域中输入".php3",在"actual"域中输入"c:\php\php.exe",然后单击"Add"。
  选择Mime tab标签并且在"Vritual"中输入"wwwserver/stdcgi",在"Actual"中输入".php3",并单击"Add"。
  单击 OK。
  在同一个窗体中选择Default Virtual Settings;
  现在单击Server tab标签;
  在"Default Index"域中输入"Index.php3"(用逗号分隔)。这将告诉web服务器也可以识别index.php3文件。
  单击 OK。
  好,足够了。让我们测试一下PHP是否在工作:
  创建一个名为index.php3的文本文件,写入下面的文本:
<font color="#000000"> <font color="#0000BB"></font><font color="#007700"> <br><br>echo </font><font color="#DD0000">"I made it!\"; <br><br>?></font> </font>
  启动你的浏览器,并指到localhost。你应该在屏幕上得到"I made it!"。
  下面,得到和安装MySQL:
  去http://www.mysql.com/download_win.html,下载MySQL-Win32发行版,将zip文件解压到一个临时目录并且运行安装程序(setup.exe)。
  如果你选择了缺省的典型安装,所有的MySQL文件将会安装到c:\mysql目录下。
  现在,跟着以下步骤,每一步都要执行正确。
  进行一些测试:
  首先,你要先运行mysqld-shareware.exe守护程序,它位于c:\mysql\bin下。你可以看到一个dos窗口,并在几秒钟后关闭。如果没有显示错误信息,MySQLd就已经运行了。
  如果想检查一下MySQL,只要运行c:\mysql\bin\mysql。你将会看到有"mysql>"提示符的终端窗口。很好,我们可以同MySQL服务器进行对话了。
  第二部分 -- 创建和操纵一个MySQL数据库:
  首先我们需要创建要使用的数据库和表。数据库起名为"example",表名为"tbl",有以下字段:识别号, 名,姓和信息。要通过mysql终端完成建库和定义表的工作,只要双击或运行c:\mysql\bin\mysql.exe。
  如果要看在MySQL中已经定义了哪些表,可以使用(注意mysql>是终端提示符):
Mysql> show databases;
  这个命令可能显示如下信息:

----------
| Database |
----------
| mysql |
| test |
----------
2 rows in set (0.01 sec)
  为了定义一个新的数据库(example),键入:
Mysql> create database example;
  你将会看到一个回答,如:
Query OK, 1 row affected (0.17 sec)
  很发,我们现在有了一个新数据库了。现在我们可以在库中建立一个新表,但首先我们需要先选中新的数据库:
Mysql> use example;
  回答应该是:
Database changed
  现在我们可以建表了,有如下字段:
  索引号 - 整数
  用户名 - 最大长度为30的字符串
  用户姓 - 最大长度为50的字符串
  自由信息 - 最大长度为100的字符串
  在MySQL提示符下键入下面的命令来创建表:
MySQL> create table tbl (idx integer(3), UserName varchar(30), LastName varchar(50), FreeText varchar(100));
  回答应该是:
Query OK, 0 rows affected (0.01 sec)
  好,让我们看一下从MySQL提示符下看表是什么样子的,键入命令:
MySQL> show columns from tbl;
  我们将得到下面的结果:

---------- -------------- ------ ----- --------- -------
| Field | Type | Null | Key | Default | Extra |
---------- -------------- ------ ----- --------- -------
| idx | int(3) | YES | | NULL | |
| UserName | varchar(30) | YES | | NULL | |
| LastName | varchar(50) | YES | | NULL | |
| FreeText | varchar(100) | YES | | NULL | |
---------- -------------- ------ ----- --------- -------
4 rows in set (0.00 sec)

  在这里,我们可以看到刚创建的表"tbl"的内容。
  现在让我们看一下表中有什么内容。键入下面的命令:
MySQL> select * from tbl;
  这个命令是用来显示表"tbl"中的所有数据的。输出可能是:
Empty set (0.07 sec)
  之所以得到这个结果,是因为我们还没有在表中插入任何数据。让我们往表中插入一些数据,键入:
MySQL> insert into tbl values (1,'Rafi','Ton','Just a test');
Query OK, 1 row affected (0.04 sec)
  如上所见,我们插入到表中的值是按照前面我们定义表的顺序,因为使用的是缺省的顺序。我们可以设定数据的顺序,语法如下:
MySQL> insert into tbl (idx,UserName,LastName,FreeText) values (1,'Rafi','Ton','Just a test');
  好,现在我们可以再看一下表中的内容:
MySQL> select * from tbl;
  这次的结果是:

------ ---------- ---------- -------------
| idx | UserName | LastName | FreeText |
------ ---------- ---------- -------------
| 1 | Rafi | Ton | Just a test |
------ ---------- ---------- -------------
1 row in set (0.00 sec)
  现在我们可以看到表的结构和每一个单元格的内容。
  现在我们想删除数据。为了实现我们应该键入:
MySQL> delete from tbl where idx=1 limit 1; Query OK, 1 row affected (0.00 sec)
   好,给出一些解释。我们正在告诉MySQL从"tbl"表中删除记录,删除那些idx字段值为1的记录,并且只限制删除一条记录。如果我们不限制删除记录数为1,那么所有idx为1的记录都将被删除(在这个例子中我们只有一条记录,但是虽然如此,我只是想让这一点更加清楚)。
  不幸的是,我们又一次得到了一个空表,所以让我们再输进去:
MySQL> insert into tbl values (1,'Rafi','Ton','Just a test');
Query OK, 1 row affected (0.04 sec)
  另一件可以做的事是,修改指定字段的内容,使用"update"命令:
MySQL>update tbl set UserName='Berber' where UserName='Rafi';
Query OK, 1 row affected (0.01 sec)
Rows matched: 1 Changed: 1 Warnings: 0
  这个命令将搜索所有UserName为"Rafi"的记录,并将它改为"Berber"。注意,set部分和where部分不一定要一样。我们可以索搜一个字段但是改变另一个字段。而且,我们可以执行两个或更多条件的搜索。
MySQL>update tbl set UserName='Rafi' where UserName='Berber' and LastName='Ton';
Query OK, 1 row affected (0.04 sec)
  这个查询搜索了两个字段,改变了UserName的值。
  第三部分 - 组合PHP与MySQL
  在这个部分里,我们将建立一个建单的基于PHP的web站点,用来控制前面所建的MySQL的表。
  我们将建立下面的站点结构(假设你已经知道一些基本的HTML的知识):
  1. index.php3 用于前端查看表
  2. add.php3 用于往表中插入数据
  3. Modify.php3 用于修改表中的记录
  4. del.php3 用于删除表中的记录
  首先,我们想查看一下数据库:
  看一下下面的脚本。
<font color="#000000"> <font color="#0000BB">Index</font><font color="#007700">.</font><font color="#0000BB">php3</font><font color="#007700">: <br><br><font color="#0000BB">html</font><font color="#007700">> <br><br><font color="#0000BB">head</font><font color="#007700">><font color="#0000BB">title</font><font color="#007700">></font><font color="#0000BB">Web Database Sample Index</font><font color="#007700"></font><font color="#0000BB">title</font><font color="#007700">> <br><br></font><font color="#0000BB">head</font><font color="#007700">> <br><br><font color="#0000BB">body bgcolor</font><font color="#007700">=</font><font color="#FF8000">#ffffff> <br><br></font><font color="#007700"><font color="#0000BB">h2</font><font color="#007700">></font><font color="#0000BB">Data from tbl</font><font color="#007700"></font><font color="#0000BB">h2</font><font color="#007700">> <br><br> <br><br></font><font color="#0000BB">mysql_connect</font><font color="#007700">() or die (</font><font color="#DD0000">"Problem connecting to DataBase\"); <br><br>$query = \"select * from tbl\"; <br><br>$result = mysql_db_query(\"example\", $query); <br><br>if ($result) { <br><br>echo \"Found these entries in the database:<br><p></p>\"; <br><br>echo \"<table width="90%" align="center" border="1"> <tr> <br><br><td align="center" bgcolor="#00FFFF">User Name</td> <br><br><td align="center" bgcolor="#00FFFF">Last Name</td> <br><br><td align="center" bgcolor="#00FFFF">Domain Name</td> <br><br><td align="center" bgcolor="#00FFFF">Request Date</td> <br><br> </tr>\"; <br><br>while ($r = mysql_fetch_array($result)) <br><br>{ <br><br>$idx = $r[\"idx\"]; <br><br>$user = $r[\"UserName\"]; <br><br>$last = $r[\"LastName\"]; <br><br>$text = $r[\"FreeText\"]; <br><br>echo \"<tr> <br><br><td>$idx</td> <br><br><td>$user</td> <br><br><td>$last</td> <br><br><td>$text</td> <br><br> </tr>\"; <br><br>} <br><br>echo \"</table>\"; <br><br>} <br><br>else <br><br>{ <br><br>echo \"No data.\"; <br><br>} <br><br>mysql_free_result($result); <br><br>include ('links.x'); <br><br>?> <br><br></font></font></font></font></font></font></font>

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

A Diffusion Model Tutorial Worth Your Time, from Purdue University A Diffusion Model Tutorial Worth Your Time, from Purdue University Apr 07, 2024 am 09:01 AM

Diffusion can not only imitate better, but also "create". The diffusion model (DiffusionModel) is an image generation model. Compared with the well-known algorithms such as GAN and VAE in the field of AI, the diffusion model takes a different approach. Its main idea is a process of first adding noise to the image and then gradually denoising it. How to denoise and restore the original image is the core part of the algorithm. The final algorithm is able to generate an image from a random noisy image. In recent years, the phenomenal growth of generative AI has enabled many exciting applications in text-to-image generation, video generation, and more. The basic principle behind these generative tools is the concept of diffusion, a special sampling mechanism that overcomes the limitations of previous methods.

Generate PPT with one click! Kimi: Let the 'PPT migrant workers' become popular first Generate PPT with one click! Kimi: Let the 'PPT migrant workers' become popular first Aug 01, 2024 pm 03:28 PM

Kimi: In just one sentence, in just ten seconds, a PPT will be ready. PPT is so annoying! To hold a meeting, you need to have a PPT; to write a weekly report, you need to have a PPT; to make an investment, you need to show a PPT; even when you accuse someone of cheating, you have to send a PPT. College is more like studying a PPT major. You watch PPT in class and do PPT after class. Perhaps, when Dennis Austin invented PPT 37 years ago, he did not expect that one day PPT would become so widespread. Talking about our hard experience of making PPT brings tears to our eyes. "It took three months to make a PPT of more than 20 pages, and I revised it dozens of times. I felt like vomiting when I saw the PPT." "At my peak, I did five PPTs a day, and even my breathing was PPT." If you have an impromptu meeting, you should do it

All CVPR 2024 awards announced! Nearly 10,000 people attended the conference offline, and a Chinese researcher from Google won the best paper award All CVPR 2024 awards announced! Nearly 10,000 people attended the conference offline, and a Chinese researcher from Google won the best paper award Jun 20, 2024 pm 05:43 PM

In the early morning of June 20th, Beijing time, CVPR2024, the top international computer vision conference held in Seattle, officially announced the best paper and other awards. This year, a total of 10 papers won awards, including 2 best papers and 2 best student papers. In addition, there were 2 best paper nominations and 4 best student paper nominations. The top conference in the field of computer vision (CV) is CVPR, which attracts a large number of research institutions and universities every year. According to statistics, a total of 11,532 papers were submitted this year, and 2,719 were accepted, with an acceptance rate of 23.6%. According to Georgia Institute of Technology’s statistical analysis of CVPR2024 data, from the perspective of research topics, the largest number of papers is image and video synthesis and generation (Imageandvideosyn

Five programming software for getting started with learning C language Five programming software for getting started with learning C language Feb 19, 2024 pm 04:51 PM

As a widely used programming language, C language is one of the basic languages ​​that must be learned for those who want to engage in computer programming. However, for beginners, learning a new programming language can be difficult, especially due to the lack of relevant learning tools and teaching materials. In this article, I will introduce five programming software to help beginners get started with C language and help you get started quickly. The first programming software was Code::Blocks. Code::Blocks is a free, open source integrated development environment (IDE) for

A must-read for technical beginners: Analysis of the difficulty levels of C language and Python A must-read for technical beginners: Analysis of the difficulty levels of C language and Python Mar 22, 2024 am 10:21 AM

Title: A must-read for technical beginners: Difficulty analysis of C language and Python, requiring specific code examples In today's digital age, programming technology has become an increasingly important ability. Whether you want to work in fields such as software development, data analysis, artificial intelligence, or just learn programming out of interest, choosing a suitable programming language is the first step. Among many programming languages, C language and Python are two widely used programming languages, each with its own characteristics. This article will analyze the difficulty levels of C language and Python

From bare metal to a large model with 70 billion parameters, here is a tutorial and ready-to-use scripts From bare metal to a large model with 70 billion parameters, here is a tutorial and ready-to-use scripts Jul 24, 2024 pm 08:13 PM

We know that LLM is trained on large-scale computer clusters using massive data. This site has introduced many methods and technologies used to assist and improve the LLM training process. Today, what we want to share is an article that goes deep into the underlying technology and introduces how to turn a bunch of "bare metals" without even an operating system into a computer cluster for training LLM. This article comes from Imbue, an AI startup that strives to achieve general intelligence by understanding how machines think. Of course, turning a bunch of "bare metal" without an operating system into a computer cluster for training LLM is not an easy process, full of exploration and trial and error, but Imbue finally successfully trained an LLM with 70 billion parameters. and in the process accumulate

Counting down the 12 pain points of RAG, NVIDIA senior architect teaches solutions Counting down the 12 pain points of RAG, NVIDIA senior architect teaches solutions Jul 11, 2024 pm 01:53 PM

Retrieval-augmented generation (RAG) is a technique that uses retrieval to boost language models. Specifically, before a language model generates an answer, it retrieves relevant information from an extensive document database and then uses this information to guide the generation process. This technology can greatly improve the accuracy and relevance of content, effectively alleviate the problem of hallucinations, increase the speed of knowledge update, and enhance the traceability of content generation. RAG is undoubtedly one of the most exciting areas of artificial intelligence research. For more details about RAG, please refer to the column article on this site "What are the new developments in RAG, which specializes in making up for the shortcomings of large models?" This review explains it clearly." But RAG is not perfect, and users often encounter some "pain points" when using it. Recently, NVIDIA’s advanced generative AI solution

AI in use | AI created a life vlog of a girl living alone, which received tens of thousands of likes in 3 days AI in use | AI created a life vlog of a girl living alone, which received tens of thousands of likes in 3 days Aug 07, 2024 pm 10:53 PM

Editor of the Machine Power Report: Yang Wen The wave of artificial intelligence represented by large models and AIGC has been quietly changing the way we live and work, but most people still don’t know how to use it. Therefore, we have launched the "AI in Use" column to introduce in detail how to use AI through intuitive, interesting and concise artificial intelligence use cases and stimulate everyone's thinking. We also welcome readers to submit innovative, hands-on use cases. Video link: https://mp.weixin.qq.com/s/2hX_i7li3RqdE4u016yGhQ Recently, the life vlog of a girl living alone became popular on Xiaohongshu. An illustration-style animation, coupled with a few healing words, can be easily picked up in just a few days.

See all articles