正在加载图片...
imx操作系统》实验指导/实验八:LAMP服务器的实施与管理4 参考命令: chmod 755 /var/www/phptest php (3)测试PHP安装。 通过物理主机上的浏览器,访问 Ubuntu Server的web服务器中的 phptest php地址(例 如http://172.16.2.10/phptest.php)如果能够访问并且显示PHP的详细信息,说明PHP安装 成功。 4、安装并配置 MySQL服务 (1)安装 MySQL Servere 参考命令 apt-get install mysql-server-55 #安装 MySQL5.5 #安装 MySQL与php连接库 (2)对 MySQL数据库进行测试一一创建数据库、数据表,并添加数据 参考命令 mysql -uroot-p123456 create database StudentInformation; e StudentInformation create table StudentInfo( studentId char(10)not null student Name char(14)not null studentSex char(1)not null studentPhone char(ll)not null primary key(studentID) insert into StudentInfo values(2012181001, Zhang San, 1, 13983839091) insert into StudentInfo values(201218 1002, Li Si, 0, 13983833491) insert into StudentInfo values( 2012181003, Wang Wu, 1, 13983839876") insert into StudentInfo values( 2012181004, Zhao Liu, 1, 13983839342) select from StudentInfo (3)创建php程序,读取 MySQL数据库并展示数据。 在 Ubuntu Server的/ar/www目录下创建文件 ReadStudentInfo. php 参考命令 cd /var/www touch ReadStudentInfo php nano ReadStudentInfo php 在 ReadstudentInfo. php文件中输入下述内容。 <lDOCTYPE html PUBLIC "-/W3C//DTD XHTML 1.0 Transitional//EN http://www.w3.org/tr/xhtmli/dtd/xhtmll-transitIonaL.dtd"> chtmlxmins="Http://www.w3.org/1999/xhtml> metahttp-equiv="content-type"content"Text/html;charset=utf-8"a <ttle>访问数据库,展示学生信息< /title margin:10px Opx; 管理科学与工程学科/共9页,第4页《Linux 操作系统》实验指导 / 实验八:LAMP 服务器的实施与管理 管理科学与工程学科 / 共 9 页,第 4 页 参考命令: chmod 755 /var/www/phptest.php (3)测试 PHP 安装。 通过物理主机上的浏览器,访问 Ubuntu Server 的 Web 服务器中的 phptest.php 地址(例 如:http://172.16.2.10/phptest.php),如果能够访问并且显示 PHP 的详细信息,说明 PHP 安装 成功。 4、安装并配置 MySQL 服务 (1)安装 MySQL Server。 参考命令: apt-get install mysql-server-5.5 #安装 MySQL 5.5 apt-get install php5-mysql #安装 MySQL 与 php 连接库 (2)对 MySQL 数据库进行测试——创建数据库、数据表,并添加数据。 参考命令: mysql –uroot –p123456 create database StudentInformation; use StudentInformation; create table StudentInfo ( studentID char(10) not null, studentName char(14) not null, studentSex char(1) not null, studentPhone char(11) not null, primary key (studentID) ); insert into StudentInfo values ('2012181001', 'Zhang San', '1', '13983839091'); insert into StudentInfo values ('2012181002','Li Si','0','13983833491'); insert into StudentInfo values ('2012181003', 'Wang Wu', '1', '13983839876'); insert into StudentInfo values ('2012181004', 'Zhao Liu', '1', '13983839342'); select * from StudentInfo; (3)创建 php 程序,读取 MySQL 数据库并展示数据。 在 Ubuntu Server 的/var/www/目录下创建文件 ReadStudentInfo.php。 参考命令: cd /var/www touch ReadStudentInfo.php nano ReadStudentInfo.php 在 ReadStudentInfo.php 文件中输入下述内容。 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>访问数据库,展示学生信息</title> <style> body { margin:10px 0px; padding:0px;
<<向上翻页向下翻页>>
©2008-现在 cucdc.com 高等教育资讯网 版权所有