asolution
Mitglied
Hallo Zusammen
Ich möchte eine Ausgabe machen aus einer Funktion genauer die Ausgabe des MYSQL Selects leider funktioniert das nicht wie gewünscht!
Ich erhalte eine Fehlermeldung:
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /var/www/webhosting/*****/loadingcontent/loadingcontent.php on line 18
Könnt ihr mir helfen?
Hier soll die Ausgabe passieren
Hier in diesem File ist die Funktion aus der ich das $result als ein Datensatz daraus ausgeben will!
PS: Sterne im Code sind extra und nur als Sicherheit im Code, im original Code sind sie natürlich nicht vorhanden!
Ich möchte eine Ausgabe machen aus einer Funktion genauer die Ausgabe des MYSQL Selects leider funktioniert das nicht wie gewünscht!
Ich erhalte eine Fehlermeldung:
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /var/www/webhosting/*****/loadingcontent/loadingcontent.php on line 18
Könnt ihr mir helfen?
Hier soll die Ausgabe passieren
PHP:
<html>
<head>
<title>***</title>
<link rel="stylesheet" type="text/css" href="design.css">
</head>
<body>
<?php
include 'loadingcontent/loadingcontent.php';
$content = new loadContent();
$content->loadInfo();
echo $data['Content'];
?>
</body>
</html>
Hier in diesem File ist die Funktion aus der ich das $result als ein Datensatz daraus ausgeben will!
PHP:
<?php
//include '../connect.php';
$connectionid = mysql_connect ("localhost", "**", "***");
if (!mysql_select_db ("***", $connectionid))
{
die ("Keine Verbindung zur Datenbank");
}
class loadContent {
function loadInfo() {
$sql = "SELECT MAX(ContId), Content".
"FROM tblContent".
"WHERE SiteId = 1".
"GROUP BY SiteId ";
$result = mysql_query ($sql);
$data = mysql_fetch_array ($result);
}
}
?>
PS: Sterne im Code sind extra und nur als Sicherheit im Code, im original Code sind sie natürlich nicht vorhanden!