Wie mache ich aktue. Them.... (ERLEDIGT)
Verfasst: 12.04.2004 02:51
DIESER BEITRAG IST ABGESCHLOSSEN !
phpBB.de - Die deutsche phpBB-Community
https://www.phpbb.de/community/
Code: Alles auswählen
//Beginn Forenausschnitt
echo" <table width=\"100%\">";
echo" <tr>";
echo" <th align=\"left\">Thema</th><th align=\"left\">Forum</th>\n"; //<th align=\"left\">Datum</th>
echo" </tr>";
$anzahlTopics = 5; // Anzahl der Topics die angezeigt sollen
$queryString = "SELECT topic_id, topic_title, topic_last_post_id, forum_name, 2forum_forums.forum_id
FROM 2forum_topics, 2forum_forums
WHERE 2forum_topics.forum_id = 2forum_forums.forum_id AND
2forum_topics.forum_id !=4 AND
2forum_topics.forum_id !=21 AND
2forum_topics.forum_id !=20
GROUP BY topic_id
ORDER BY topic_last_post_id DESC
LIMIT $anzahlTopics";
$result = mysql_query($queryString);
$today = time();
while($resultArray = mysql_fetch_array($result))
{
if(strlen($resultArray[topic_title]) > 25) //Titel kürzen, falls länger als 25 Zeichen
{
$resultArray[topic_title] = substr($resultArray[topic_title],0,22)." ..";
}
echo" <tr> \n";
echo" <td><a href=\"/forum/viewtopic.php?t=$resultArray[topic_id]#$resultArray[topic_last_post_id]\">$resultArray[topic_title]</a> </td>\n";
echo" <td><a href=\"/forum/viewforum.php?f=$resultArray[forum_id]\">$resultArray[forum_name]</a> </td>\n";
echo" </tr>";
}
echo "</table>";
echo "<br>";
echo "<br>";
//Ende ForenausschnittCode: Alles auswählen
//Beginn Forenausschnitt
echo" <table width=\"100%\">";
echo" <tr>";
echo" <th align=\"left\">Thema</th><th align=\"left\">Forum</th>\n"; //<th align=\"left\">Datum</th>
echo" </tr>";
$anzahlTopics = 5; // Anzahl der Topics die angezeigt sollen
$queryString = "SELECT topic_id, topic_title, topic_last_post_id, forum_name, 2forum_forums.forum_id
FROM 2forum_topics, 2forum_forums
WHERE 2forum_topics.forum_id = 2forum_forums.forum_id AND
2forum_topics.forum_id !=4 AND
2forum_topics.forum_id !=21 AND
2forum_topics.forum_id !=20
GROUP BY topic_id
ORDER BY topic_last_post_id DESC
LIMIT $anzahlTopics";
$result = mysql_query($queryString);
$today = time();
while($resultArray = mysql_fetch_array($result))
{
if(strlen($resultArray[topic_title]) > 25) //Titel kürzen, falls länger als 25 Zeichen
{
$resultArray[topic_title] = substr($resultArray[topic_title],0,22)." ..";
}
echo" <tr> \n";
echo" <td><a href="viewtopic.php?t=$resultArray[topic_id]#$resultArray[topic_last_post_id]\">$resultArray[topic_title]</a> </td>\n";
echo" <td><a href="viewforum.php?f=$resultArray[forum_id]\">$resultArray[forum_name]</a> </td>\n";
echo" </tr>";
}
echo "</table>";
echo "<br>";
echo "<br>";
//Ende ForenausschnittDu willst ein Forum modden und weißt nicht wie man eine Datenbankverbindung herstellt? Das ist in etwa so wenn man in einem Auto den Motor reparieren will und fragt: "Wie benutzt man einen Schraubenzieher" naja...Medi8tor hat geschrieben:Ich sag doch bin Neuling wie geht das `?
Code: Alles auswählen
<?php
function connectToDB()
{
$mysqluser="deinDbUesrname";
$mysqlpasswd="deinPasswort";
$mysqlhost="derDatenbankServer";
$mysqldbname="nameDerDatenbank";
$connID = @mysql_pconnect($mysqlhost, $mysqluser, $mysqlpasswd);
if ($connID)
{
mysql_select_db($mysqldbname);
return $connID;
}
else {
echo "<h1>Fehler</h1><br>";
echo "<font>Keine Verbindung zum Datenbankserver möglich. <br>Bitte versuchem Sie es später noch mal...";
exit();
}
}
?>Code: Alles auswählen
<?php
function connectToDB()
{
$mysqluser="deinDbUesrname";
$mysqlpasswd="deinPasswort";
$mysqlhost="derDatenbankServer";
$mysqldbname="nameDerDatenbank";
$connID = @mysql_pconnect($mysqlhost, $mysqluser, $mysqlpasswd);
if ($connID)
{
mysql_select_db($mysqldbname);
return $connID;
}
else {
echo "<h1>Fehler</h1><br>";
echo "<font>Keine Verbindung zum Datenbankserver möglich. <br>Bitte versuchem Sie es später noch mal...";
exit();
}
}
?>Code: Alles auswählen
//Beginn Forenausschnitt
echo" <table width=\"100%\">";
echo" <tr>";
echo" <th align=\"left\">Thema</th><th align=\"left\">Forum</th>\n"; //<th align=\"left\">Datum</th>
echo" </tr>";
$anzahlTopics = 5; // Anzahl der Topics die angezeigt sollen
$queryString = "SELECT topic_id, topic_title, topic_last_post_id, forum_name, 2forum_forums.forum_id
FROM 2forum_topics, 2forum_forums
WHERE 2forum_topics.forum_id = 2forum_forums.forum_id AND
2forum_topics.forum_id !=4 AND
2forum_topics.forum_id !=21 AND
2forum_topics.forum_id !=20
GROUP BY topic_id
ORDER BY topic_last_post_id DESC
LIMIT $anzahlTopics";
$result = mysql_query($queryString);
$today = time();
while($resultArray = mysql_fetch_array($result))
{
if(strlen($resultArray[topic_title]) > 25) //Titel kürzen, falls länger als 25 Zeichen
{
$resultArray[topic_title] = substr($resultArray[topic_title],0,22)." ..";
}
echo" <tr> \n";
echo" <td><a href=\"/forum/viewtopic.php?t=$resultArray[topic_id]#$resultArray[topic_last_post_id]\">$resultArray[topic_title]</a> </td>\n";
echo" <td><a href=\"/forum/viewforum.php?f=$resultArray[forum_id]\">$resultArray[forum_name]</a> </td>\n";
echo" </tr>";
}
echo "</table>";
echo "<br>";
echo "<br>";
//Ende Forenausschnitt