Dell PowerEdge C6220 Installatiehandleiding - Pagina 25

Blader online of download pdf Installatiehandleiding voor {categorie_naam} Dell PowerEdge C6220. Dell PowerEdge C6220 26 pagina's. Lamp reference architecture centos 6.2
Ook voor Dell PowerEdge C6220: Technisch handboek (35 pagina's), Portfolio Handleiding (27 pagina's)

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