Ich bin am verzweifeln:
Ich will mit php/mysql ein Formular für Notizen erstellen,
aber der <sumbit> button sieht aus wie ein textfeld
und der <button> button linkt nicht.
Ich hab echt keine ahnung mehr, bitte helft mir!
----------------------------
Mein Code:
notiz.php
die mysql-db heißt sukram: Tabelle:notiz Spaltenwd, notes
----------------------------
Ich will mit php/mysql ein Formular für Notizen erstellen,
aber der <sumbit> button sieht aus wie ein textfeld
und der <button> button linkt nicht.
Ich hab echt keine ahnung mehr, bitte helft mir!
----------------------------
Mein Code:
notiz.php
die mysql-db heißt sukram: Tabelle:notiz Spaltenwd, notes
----------------------------
PHP:
<html>
<body>
<?php
if ($safe){
$link2 = mysql_connect('localhost', 'sukram', 'passwort');
mysql_select_db('sukram', $link2);
$sql2 = "UPDATE `notiz` SET `notes`=$textt";
$result = mysql_query($sql2, $link2);
};
?>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br><p align="center">
<font size="7">Passwort:</font>
<form action="notiz.php" method="POST">
<p align="center">
<input type="password" name="pwd" size="34"><p><p align="center">
<input type="button" value="O.K." name="ok"></p>
</form>
</body>
<?php
$link1 = mysql_connect("localhost", "sukram", "passwort");
mysql_select_db("sukram", $link1);
$sql1 = "SELECT `pwd` FROM `notiz` LIMIT 0, 30 ";
$result = mysql_query($sql1, $link1);
$mysqlpwdv = mysql_fetch_row($result);
$mysqlpwd = $mysqlpwdv[0];
if ($pwd == $mysqlpwd){
?>
<form method="POST" action="notiz.php">
<p align="center"> </p>
<p align="center"><textarea rows="25" name="textt" cols="85">
<?php
$link = mysql_connect('localhost', 'sukram', 'passwort');
mysql_select_db('sukram', $link);
$sql = "SELECT `notes` FROM `notiz` LIMIT 0, 30 ";
$query = mysql_query($sql, $link);
$zuletzt = mysql_fetch_row($query);
echo $zuletzt[0];
?>
</textarea></p>
<p align="center"><input type="button" value="Speichern" name="safe"></p>
</form>
</body>
<?php
};
?>
<?php
if ($pwd == ""){
echo "";
}elseif ($pwd != $mysqlpwd){
?>
<br>
<br>
<br>
<p align="center">Passwort falsch!!</p>
<br><br>
<p align="center">
</body>
<?php
};
?>
</html>