[eluser]adamsonit[/eluser]
Code:
<?php function nukeMagicQuotes() {
if (get_magic_quotes_gpc()) {
function stripslashes_deep($value) {
$value = is_array($value) ? array_map('stripslashes_deep', $value) : stripslashes($value);
return $value;
}
$_POST = array_map('stripslashes_deep', $_POST);
$_GET = array_map('stripslashes_deep', $_GET);
$_COOKIE = array_map('stripslashes_deep', $_COOKIE);
}
}
?>
<?php nukeMagicQuotes(); ?>
<?php
// Connect to the database
$cnx = mysql_connect("localhost", "root", "");
if (!$cnx) {
die("Unable to connect to database!");
}
// Select your database
mysql_select_db("fckdata", $cnx);
// Get data from the database
$query = mysql_query("SELECT data FROM fck_data WHERE id = 1");
$data = mysql_fetch_array($query);
?>
<!-- This is where the content from your database is displayed
we are telling the database to display the content from the field in
the database called data -->
<div>
<?php echo $data[data]; ?>
</div>