
Zitat von
Thorsten020
Wie kann ich es anstellen, Freitext in die Link hinzufügen-Section zu schreiben, so wie in der Links section über eine lang-variable (was übrigends eine äußerst ungünstige möglichkeit ist...)?
Ein bisschen ungeschickt ausgedrückt, oder? Wenn ich es trotzdem richtig verstanden haben sollte...
Kannst Du in der Datei weblinks.html.php (ca Zeile 289) eine Tabellenzeile mit Deinem Text einfügen.
Aus
HTML-Code:
<table cellpadding="4" cellspacing="1" border="0" width="100%">
<tr>
<td width="20%" align="right">
<?php echo _NAME; ?>
</td>
<td width="80%">
<input class="inputbox" type="text" name="title" size="50" maxlength="250" value="<?php echo htmlspecialchars( $row->title, ENT_QUOTES );?>" />
</td>
</tr>
<tr>
<td valign="top" align="right">
<?php echo _SECTION; ?>
</td>
<td>
<?php echo $lists['catid']; ?>
</td>
</tr>
<tr>
<td valign="top" align="right">
<?php echo _URL; ?>
</td>
<td>
<input class="inputbox" type="text" name="url" value="<?php echo $row->url; ?>" size="50" maxlength="250" />
</td>
</tr>
<tr>
<td valign="top" align="right">
<?php echo _URL_DESC; ?>
</td>
<td>
<textarea class="inputbox" cols="30" rows="6" name="description" style="width:300px" width="300"><?php echo htmlspecialchars( $row->description, ENT_QUOTES );?></textarea>
</td>
</tr>
</table>
wird..
HTML-Code:
<table cellpadding="4" cellspacing="1" border="0" width="100%">
<tr>
<td align="right" colspan="2">
<p align="center">Hier Dein Text</p>
</td>
</tr>
<tr>
<td width="20%" align="right">
<?php echo _NAME; ?>
</td>
<td width="80%">
<input class="inputbox" type="text" name="title" size="50" maxlength="250" value="<?php echo htmlspecialchars( $row->title, ENT_QUOTES );?>" />
</td>
</tr>
<tr>
<td valign="top" align="right">
<?php echo _SECTION; ?>
</td>
<td>
<?php echo $lists['catid']; ?>
</td>
</tr>
<tr>
<td valign="top" align="right">
<?php echo _URL; ?>
</td>
<td>
<input class="inputbox" type="text" name="url" value="<?php echo $row->url; ?>" size="50" maxlength="250" />
</td>
</tr>
<tr>
<td valign="top" align="right">
<?php echo _URL_DESC; ?>
</td>
<td>
<textarea class="inputbox" cols="30" rows="6" name="description" style="width:300px" width="300"><?php echo htmlspecialchars( $row->description, ENT_QUOTES );?></textarea>
</td>
</tr>
</table>
Lesezeichen