B
bdt600
Guest
Stimmt!Da fehlt ein Komma nach '$hommepage'
Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
Stimmt!Da fehlt ein Komma nach '$hommepage'
Mit dem "funktioniert" ist das so eine Sache, das glaubst nur du. Ich würde mal sagen, dass dein Gästebuch relativ gefährlich ist, weil du dich um sicherheitsrelevante Dinge nicht im geringsten kümmerst.Das war der Fehler jetzt funktioniert es
Na das ist ja eine tolle Begründung :( Wenn da simpelste Sicherungen fehlen, sag' ich mal: 6, setzen.
Wie mache ich aus URIs im Text anklickbare Links?
http://www.php-faq.de/q-regexp-uri-klickbar.html
Ja schon aber wie funktioniert es das in der Hommepage Zeile beim öffnen des Dokuments schon ein http:// bereits vordefiniert seht???
Was verbrüht? Oo Ich vermute Du meinst das value-Attribut vom Eingabefeld.
Ja habe mich verschrieben meinte bräuchte das dringent.
Weist du vielleicht wie das funktioniert das beim aufrufen des Formulars Inder der Zeile Hommepage ein http:// schon steht???
<input value="http://">
Eben mit dem value-Attribut.
HTML:<input value="http://">
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<title>Bitte tragen Sie sich in unser Gaestebuch ein</title>
</head>
<body bgcolor="#FFFFFF" text="#000000">
<form name="guest" method="post" action="guest_2.php" >
<H2>Ihr G�stebucheintrag:</H2>
<table width="500px" border="0" cellspacing="0" cellpadding="5">
<tr>
<td bgcolor="#999999" height="30px" width="80px" >Name:</td>
<td bgcolor="#CCCCCC" height="30px" width="420px">
<input type="text" name="name" maxlength="50" size="25">
</td>
</tr>
<tr>
<td bgcolor="#999999" height="30px" width="80px" >E-Mail:</td>
<td bgcolor="#CCCCCC" height="30px" width="420px">
<input type="text" name="email" size="25" maxlength="50">
</td>
</tr>
<tr>
<td bgcolor="#999999" height="30px" width="80px" >Hommepage:</td>
<td bgcolor="#CCCCCC" height="30px" width="420px">
<input value="http://" type="text" name="hommepage" size="25" maxlength="50" value="http://" >
</td>
</tr>
<tr>
<td bgcolor="#999999" height="180px" width="80px" >Text:</td>
<td bgcolor="#CCCCCC" height="180px" width="420px" >
<textarea name="text" cols="45" rows="10"></textarea>
</td>
</tr>
<tr>
<td bgcolor="#999999" height="30px" width="80px" > </td>
<td bgcolor="#CCCCCC" height="30px" width="420px">
<input type="submit" name="senden" value="Senden" >
<input type="reset" name="reset" value="Löschen">
</td>
</tr>
</table>
</form>
</body>
</html>
Habe das jetzt gemacht allerdings funktioniert es nicht :
Code:<?xml version="1.0" encoding="ISO-8859-1" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /> <title>Bitte tragen Sie sich in unser Gaestebuch ein</title> </head> <body bgcolor="#FFFFFF" text="#000000"> <form name="guest" method="post" action="guest_2.php" > <H2>Ihr G�stebucheintrag:</H2> <table width="500px" border="0" cellspacing="0" cellpadding="5"> <tr> <td bgcolor="#999999" height="30px" width="80px" >Name:</td> <td bgcolor="#CCCCCC" height="30px" width="420px"> <input type="text" name="name" maxlength="50" size="25"> </td> </tr> <tr> <td bgcolor="#999999" height="30px" width="80px" >E-Mail:</td> <td bgcolor="#CCCCCC" height="30px" width="420px"> <input type="text" name="email" size="25" maxlength="50"> </td> </tr> <tr> <td bgcolor="#999999" height="30px" width="80px" >Hommepage:</td> <td bgcolor="#CCCCCC" height="30px" width="420px"> <input value="http://" type="text" name="hommepage" size="25" maxlength="50" value="http://" > </td> </tr> <tr> <td bgcolor="#999999" height="180px" width="80px" >Text:</td> <td bgcolor="#CCCCCC" height="180px" width="420px" > <textarea name="text" cols="45" rows="10"></textarea> </td> </tr> <tr> <td bgcolor="#999999" height="30px" width="80px" > </td> <td bgcolor="#CCCCCC" height="30px" width="420px"> <input type="submit" name="senden" value="Senden" > <input type="reset" name="reset" value="Löschen"> </td> </tr> </table> </form> </body> </html>
<input value="http://" type="text" name="hommepage" size="25" maxlength="50" value="http://" >
Und da fällt dir jetzt nichts auf?
HTML:<input value="http://" type="text" name="hommepage" size="25" maxlength="50" value="http://" >
PS: Hommepage schreibt man mit einem "m"
Habe einfach nur den falschen Text kopiert, wie ich den thread geschrieben habe habe ich es mit dem korrekten Formular probiert wo nur einmal das value angegeben ist.
<?xml version="1.0" encoding="ISO-8859-1" ?>
<input />
... Ich studiere Webdesigne.
Du studierst Webdesign und lieferst solche HTML-Dateien ab?! (Das nur mal nebenbei - sorry fürs OT, aber da konnte ich mich jetzt nicht zurückhalten)
Was soll das eigentlich werden:
HTML:<?xml version="1.0" encoding="ISO-8859-1" ?>
Außerdem verwendest du (theoretisch) XHTML, deshalb muss das <input> Element auch geschlossen werden:
HTML:<input />
Würdest du nicht so absolute Schei*e produzieren, sollte das jedenfalls funktionieren.