Example #1
0
echo htmlspecialchars($literatur->ISBN);
?>
</td>
			</tr>
			<tr>
				<th scope="row">Beschreibung:</th>	
				<td><?php 
echo nl2br(htmlspecialchars($literatur->Beschreibung));
?>
</td>
			</tr>
			<tr>
				<th scope="row">Bibtex:</th>	
				<td>
					<pre><?php 
echo htmlspecialchars($literatur->ToBibtex());
?>
</pre>
				</td>
			</tr>
			<?php 
// Sind Mitgliedsrechte vorhanden, gebe Bearbeiten- und Löschenknopf aus
if ($login->IsMember() === true) {
    ?>
				<tr>
					<th scope="row">Aktionen:</th>	
					<td><form style="display:inline" action="litmod.<?php 
    echo $ext;
    ?>
?id=<?php 
    echo htmlspecialchars($_GET["id"]);