HTML beginner |
|
Beste Sitemasters,
Ik heb een phpBB2 forum en een script die op mijn index de 5 onderwerpen waar als laatst op gereageerd zijn.
Alleen omdat sommige onderwerpen zo'n lange titel hebben wil ik de de titel laten afbreken na een bepaald aantal karakters.
En omdat ik nogal een n00b ben in PHP vraag ik jullie om hulp! Dit is de source van het script!
<? include_once ("forum/config.php");
$mysql_connection = mysql_connect ($dbhost, $dbuser, $dbpasswd) or die ("Connection failed");
mysql_select_db ($dbname) or die ("Selecting database failed");
$sql = "SELECT * FROM forum_topics ORDER BY topic_last_post_id DESC LIMIT 5";
$query = mysql_query($sql) or die(mysql_error());
while($rij = mysql_fetch_object($query))
{
echo "<table width=\"585\" border=\"0\" cellspacing=\"1\" cellpadding=\"0\">
<tr>
<td bgcolor=\"DED2B6\" width=\"587\"><img src=\"images/layout/icons/arrow2.gif\" width=\"14\" height=\"5\"> <a href=\"forum/viewtopic.php?p=$rij->topic_last_post_id#$rij->topic_last_post_id\">$rij->topic_title</a></td>
</tr>
</table>
";
}
?>
<? include_once ("forum/config.php"); $mysql_connection = mysql_connect ($dbhost, $dbuser, $dbpasswd) or die ("Connection failed"); $sql = "SELECT * FROM forum_topics ORDER BY topic_last_post_id DESC LIMIT 5"; { echo "<table width=\"585\" border=\"0\" cellspacing=\"1\" cellpadding=\"0\"> <tr> <td bgcolor=\"DED2B6\" width=\"587\"><img src=\"images/layout/icons/arrow2.gif\" width=\"14\" height=\"5\"> <a href=\"forum/viewtopic.php?p=$rij->topic_last_post_id#$rij->topic_last_post_id\">$rij->topic_title</a></td> </tr> </table> "; } ?>
|