ryserstephan
Mitglied
Hallo zusammen ich habe ein kleinens problem, ich habe ein formular das daten aus der Mysql ausliesst in eine TextArea ich will das mann die bearbeiten erweitern kann.
Und der vorhandene eintrag ersetzt!
Habs fast gepackt leider wenn ich die daten geändert habe und wieder hochladen will, wird einfach nur ein ein neuer eintrag gemacht der lehr ist.
Solle aber eben ersetzt werden.
*PHP BUTTON GEHT NICHT*<form action="feedback.php" method="post">
<textarea>
<?php
$db_dbname = 'zielvereinbarung';
$db_user = 'root';
$db_pw = '';
$db_host = 'localhost';
$tabellenname = 'daten';
$id = $row['id'];
$name = $row['name'];
$C1 = $row['C1'];
$C2 = $row['C2'];
$C3 = $row['C3'];
$C4 = $row['C4'];
$C5 = $row['C5'];
$C6 = $row['C6'];
$C7 = $row['C7'];
$C8 = $row['C8'];
$C9 = $row['C9'];
$C10 = $row['C10'];
$C11 = $row['C11'];
$datum = $row['datum'];
mysql_connect($db_host, $db_user, $db_pw);
mysql_select_db($db_dbname);
$sql = "Select * FROM daten";
$q = mysql_query($sql);
$data = mysql_fetch_array($q);
echo $data['name'];
$sql = "Update daten SET C1= '".$C1."',
C2= '".$C2."',
C3= '".$C3."',
C4= '".$C4."',
C5= '".$C5."',
C6= '".$C6."',
C7= '".$C7."',
C8= '".$C8."',
C9= '".$C9."',
C10= '".$C10."',
C11= '".$C11."',
name= '".$name."',
datum= '".$datum."'";
?>
</textarea >
<br>
<textarea cols="105">
<?php
echo $data['C1'];
?>
</textarea>
<br>
<textarea cols="105">
<?php
echo $data['C2'];
?>
</textarea>
<br>
<textarea cols="105">
<?php
echo $data['C3'];
?>
</textarea>
<br>
<textarea cols="105">
<?php
echo $data['C4'];
?>
</textarea>
<br>
<textarea cols="105">
<?php
echo $data['C5'];
?>
</textarea>
<br>
<textarea cols="105">
<?php
echo $data['C6'];
?>
</textarea>
<br>
<textarea cols="105">
<?php
echo $data['C7'];
?>
</textarea>
<br>
<textarea cols="105">
<?php
echo $data['C8'];
?>
</textarea>
<br>
<textarea cols="105">
<?php
echo $data['C9'];
?>
</textarea>
<br>
<textarea cols="105">
<?php
echo $data['C10'];
?>
</textarea>
<br>
<textarea cols="105">
<?php
echo $data['C11'];
?>
</textarea>
<br>
<textarea cols="105">
<?php
echo $data['datum'];
?>
</textarea>
<br>
<input type="submit">
</form>
Hoffentlich siet jemand mein fehler.
Danke im foraus und ich bin dankbar für jeden TIP
Und der vorhandene eintrag ersetzt!
Habs fast gepackt leider wenn ich die daten geändert habe und wieder hochladen will, wird einfach nur ein ein neuer eintrag gemacht der lehr ist.
Solle aber eben ersetzt werden.
*PHP BUTTON GEHT NICHT*<form action="feedback.php" method="post">
<textarea>
<?php
$db_dbname = 'zielvereinbarung';
$db_user = 'root';
$db_pw = '';
$db_host = 'localhost';
$tabellenname = 'daten';
$id = $row['id'];
$name = $row['name'];
$C1 = $row['C1'];
$C2 = $row['C2'];
$C3 = $row['C3'];
$C4 = $row['C4'];
$C5 = $row['C5'];
$C6 = $row['C6'];
$C7 = $row['C7'];
$C8 = $row['C8'];
$C9 = $row['C9'];
$C10 = $row['C10'];
$C11 = $row['C11'];
$datum = $row['datum'];
mysql_connect($db_host, $db_user, $db_pw);
mysql_select_db($db_dbname);
$sql = "Select * FROM daten";
$q = mysql_query($sql);
$data = mysql_fetch_array($q);
echo $data['name'];
$sql = "Update daten SET C1= '".$C1."',
C2= '".$C2."',
C3= '".$C3."',
C4= '".$C4."',
C5= '".$C5."',
C6= '".$C6."',
C7= '".$C7."',
C8= '".$C8."',
C9= '".$C9."',
C10= '".$C10."',
C11= '".$C11."',
name= '".$name."',
datum= '".$datum."'";
?>
</textarea >
<br>
<textarea cols="105">
<?php
echo $data['C1'];
?>
</textarea>
<br>
<textarea cols="105">
<?php
echo $data['C2'];
?>
</textarea>
<br>
<textarea cols="105">
<?php
echo $data['C3'];
?>
</textarea>
<br>
<textarea cols="105">
<?php
echo $data['C4'];
?>
</textarea>
<br>
<textarea cols="105">
<?php
echo $data['C5'];
?>
</textarea>
<br>
<textarea cols="105">
<?php
echo $data['C6'];
?>
</textarea>
<br>
<textarea cols="105">
<?php
echo $data['C7'];
?>
</textarea>
<br>
<textarea cols="105">
<?php
echo $data['C8'];
?>
</textarea>
<br>
<textarea cols="105">
<?php
echo $data['C9'];
?>
</textarea>
<br>
<textarea cols="105">
<?php
echo $data['C10'];
?>
</textarea>
<br>
<textarea cols="105">
<?php
echo $data['C11'];
?>
</textarea>
<br>
<textarea cols="105">
<?php
echo $data['datum'];
?>
</textarea>
<br>
<input type="submit">
</form>
Hoffentlich siet jemand mein fehler.
Danke im foraus und ich bin dankbar für jeden TIP