mirror of
https://gitlab.com/harald.mueller/aktuelle.kurse.git
synced 2024-11-23 18:21:56 +01:00
113 lines
2.9 KiB
PHP
113 lines
2.9 KiB
PHP
<div class="standard">
|
|
|
|
<b>Konto hinzufügen</b>
|
|
<br><br>
|
|
|
|
|
|
<?php
|
|
|
|
include("encode.inc");
|
|
|
|
if($_SESSION[angemeldet]!=true)
|
|
{
|
|
echo 'Der Zugriff auf diese Seite wurde verweigert.<br>Bitte melden Sie sich zuerst an.<br><br>';
|
|
echo '<a href="index.php?seite=4000&von=1100">zum Login</a>';
|
|
die();
|
|
}
|
|
|
|
$ausfuehren = $_POST[ausfuehren];
|
|
$konten_id = $_POST[konten_id];
|
|
$konten_bezeichnung = $_POST[konten_bezeichnung];
|
|
$konten_typ = $_POST[konten_typ];
|
|
|
|
if($ausfuehren=="Konto hinzufügen")
|
|
{
|
|
if($konten_typ==-1)
|
|
{
|
|
echo 'Bitte wählen Sie einen Kontentyp.<br><br>';
|
|
echo '<a href="index.php?seite=1100">zurück</a>';
|
|
die();
|
|
}
|
|
|
|
$doppelter_eintrag = false;
|
|
$sql = 'select * from Konten where Konten_ID like '.$konten_id;
|
|
$result = mysql_query($sql);
|
|
while($row = mysql_fetch_array($result))
|
|
{
|
|
$doppelter_eintrag = true;
|
|
}
|
|
|
|
if($doppelter_eintrag==true)
|
|
{
|
|
echo 'Ein Konto mit der ID \''.$konten_id.'\' besteht bereits.<br><br>';
|
|
echo '<a href="index.php?seite=1100">zurück</a>';
|
|
die();
|
|
}
|
|
|
|
$sql = 'insert into Konten(Konten_ID, Konten_Bezeichnung, Konten_Typ) values('.$konten_id.', encode("'.$konten_bezeichnung.'", "'.$encode_passwort.'"), '.$konten_typ.')';
|
|
mysql_query($sql) or die('Das Konto konnte nicht hinzugefügt werden.'.mysql_error().'<br><br><a href="index.php?seite=1100">zurück</a>');
|
|
|
|
echo 'Das Konto wurde erfolgreich hinzugefügt.<br><br>';
|
|
echo '<a href="index.php?seite=1000">weiter</a>';
|
|
|
|
}
|
|
else
|
|
{
|
|
echo '<form name="neues_konto" action="index.php?seite=1100" method="post">';
|
|
echo '<table border="0" cellspacing="0" cellpadding="0">';
|
|
|
|
echo '<tr>';
|
|
echo '<td>ID: </td>';
|
|
echo '<td>';
|
|
echo '<input name="konten_id" type="text" style="width:50"/>';
|
|
echo '</td>';
|
|
echo '</tr>';
|
|
|
|
echo '<tr><td colspan="2"> </td></tr>';
|
|
|
|
echo '<tr>';
|
|
echo '<td>Bezeichnung: </td>';
|
|
echo '<td>';
|
|
echo '<input name="konten_bezeichnung" type="text" style="width:200"/>';
|
|
echo '</td>';
|
|
echo '</tr>';
|
|
|
|
echo '<tr><td colspan="2"> </td></tr>';
|
|
|
|
echo '<tr>';
|
|
echo '<td>Typ: </td>';
|
|
echo '<td>';
|
|
echo '<select name="konten_typ" style="width:200"/>';
|
|
echo '<option value="-1" selected>bitte auswählen</option>';
|
|
|
|
echo '<option value="0">Aktiv</option>';
|
|
echo '<option value="2">Passiv</option>';
|
|
echo '<option value="4">Aufwand</option>';
|
|
echo '<option value="5">Ertrag</option>';
|
|
|
|
echo '</select>';
|
|
echo '</td>';
|
|
echo '</tr>';
|
|
|
|
echo '<tr><td colspan="2"> </td></tr>';
|
|
|
|
echo '<tr>';
|
|
echo '<td>Sollkonto: </td>';
|
|
echo '<td>';
|
|
echo '<input name="ausfuehren" type="submit" value="Konto hinzufügen"/>';
|
|
echo '</td>';
|
|
echo '</tr>';
|
|
|
|
echo '</table>';
|
|
echo '</form>';
|
|
}
|
|
|
|
?>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|