Dell PowerEdge C6220 Installationshandbuch - Seite 25

Blättern Sie online oder laden Sie pdf Installationshandbuch für Server Dell PowerEdge C6220 herunter. Dell PowerEdge C6220 26 Seiten. Lamp reference architecture centos 6.2
Auch für Dell PowerEdge C6220: Technisches Handbuch (35 seiten), Portfolio-Handbuch (27 seiten)

Dell PowerEdge C6220 Installationshandbuch
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