Dell PowerEdge C6220 Panduan Instalasi - Halaman 25
Jelajahi secara online atau unduh pdf Panduan Instalasi untuk Server Dell PowerEdge C6220. Dell PowerEdge C6220 26 halaman. Lamp reference architecture centos 6.2
Juga untuk Dell PowerEdge C6220: Panduan Teknis (35 halaman), Panduan Portofolio (27 halaman)
APPENDIX D – SAMPLE SCRIPT FILE FOR LAMP ON CENTOS 6.2
Figure 3 presents the sample PHP file to use for testing the LAMP stack.
<?php
$db_username="testappuser";
$db_password="Password1";
$db_host
$db_name
$link
mysql_select_db($db_name, $link);
$result = mysql_query("SELECT testcol FROM tbl_hello_world", $link);
$row
= mysql_fetch_assoc($result);
print_r($row);
mysql_close($link);
?>
Figure 3: Sample PHP file to query the test database: /var/www/html/helloworld.php.
Dell PowerEdge C6220 and CentOS 6.2: A LAMP Reference
Architecture
="localhost";
="helloworlddb";
= mysql_connect($db_host, $db_username, $db_password);
Principled Technologies, Inc. 25