WuLana
@Sandy27: DÜnner gehen sie leider nicht aber ich schau was ich noch beim Formular machen ann damit sie auch dünner wirken. Aber von den Optionenn passt das Formular oder?
.chilli
Eine Frage: Codest du auch Steckbriefvorlagen (HTML) zu PHP um ? Also so, dass ich in PHPmyAdmin nur noch die entsprechenden Felder ausfüllen muss. Wenn es geht mit Bilder einfügen.
WuLana
Ne sorry das kann ich leider nicht aber es ginge ja auch das du das Formular nicht ausgefüllt aber mit den ganzen Optionen(alle deaktivier) speicherst und halt dann pro Steckbrief ausfüllst.Ich fang ja gerade ersta an so richtig PHP zu lernen vielleicht so in 1-2Wochen vielleicht krig ich das hin ich geb bescheid sobald ich das kapiert habe!
Sorry, tut mir wirklich leid!
@Lisa: Klar mach ich!Aber für was ist die OptionPasswort? Gibt es da ein spezielles oder das von den Regeln oder wie? Bei dem blcik cih ned ganz durch.
Lisa
Okay, danke
WuLana
So fertig hier wieder die Test nummer:
http://simtici.si.funpic.de/formulare%20...leformular.html
Die Ö's sind dann in deinem Formular mit oe geschrieben und sehen dann auch nich so komisch aus:
code: |
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
|
<!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=utf-8" />
<title>Spiele</title>
<style type="text/css">
<!--
.Stil1 {font-family: Tahoma}
.Stil3 {font-family: Tahoma; font-style: italic; }
.Stil4 {font-family: Tahoma; font-size: 18px; }
-->
</style>
</head>
<body>
<form id="form1" name="form1" method="post" action="spiel.php">
<h1 align="center" class="Stil4">Spieleformular</h1>
<div align="center" class="Stil1">
<table width="400" border="0">
<tr>
<td>Mitgliedsname:</td>
<td><input name="mitgliedsname" type="text" class="Stil3" id="mitgliedsname" /></td>
</tr>
<tr>
<td>Spiel:</td>
<td><input name="spiel" type="text" class="Stil3" id="spiel" /></td>
</tr>
<tr>
<td>Loesung:</td>
<td><input name="loesung" type="text" class="Stil3" id="loesung" /></td>
</tr>
<tr>
<td>Passwort:</td>
<td><input name="passwort" type="password" class="Stil3" id="passwort" /></td>
</tr>
</table>
<p>
<input type="submit" name="send" id="send" value="Senden" />
<input type="reset" name="zurueck" id="zurueck" value="Zuruecksetzen" />
</p>
</div>
</form>
</body>
</html>
|
|
#Die PHP Datei muss spiel.php heißen
php: |
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
|
<!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=utf-8" />
<title>Spieleecke</title>
</head>
<body>
<?php
$betreff="Spiele";
$mitgliedsname=$_POST['mitgliedsname'];
$spiel=$_POST['spiel'];
$loesung=$_POST['loesung'];
$passwort=$_POST['passwort'];
if ( ($mitgliedsname=="")OR($spiel=="")OR($loesung=="")OR($passwort=="") )
{
echo "Du hast nicht alle Felder ausgefuellt! Gehe <a href='javascript:back()'>zurueck</a> und korrigiere dies!";
}
else
{
$text=" Mitgliedsname:$mitgliedsname
Spiel:$spiel
Loesung: $loesung
Passwort:$passwort";
mail("vrh.dreamhorse@web.de",$betreff,$text,"From $name <$email>");
echo "Deine e-Mail wurde erfolgreich abgeschickt.";
}
?>
</body>
</html>
|
|
So und heute nehme ich kein weiternAufträge mehr an alles was ihr heute noch postet wird morgen erst bearbeitet!
@Sandy deines mache ich natürlich noch weiter stelle es aber erst morgen rein.
Lisa
Dankeschön

Funktioniert ebenfalls

is echt supi, dankeschön
WuLana
Bitter gerne Falls du wieder was brauchst guck vorbei!
Sandy27: Der Steckbrief ist fast fertig jedoch nur von en Schulpferden.
Ponyfreak94
Machst du mir jetzt keins mehr??!!
WuLana
Leila hatte doch gesagt das du ohne FTP und PHP nehmenden Server keine Formulare funktionieren und daher mache ich auch keines für dich. Sorry es ist nun mal so!
Probiers dohc mit dem hier:
http://www.onetwomax.de/
Sandy: Hier mal für dei Schulpferde es lässt sich noch alles ändern!
code: |
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
129:
130:
131:
132:
133:
134:
135:
136:
137:
138:
139:
140:
141:
142:
143:
144:
145:
146:
147:
148:
149:
150:
151:
152:
153:
154:
155:
156:
157:
158:
159:
160:
161:
162:
163:
164:
165:
166:
167:
168:
169:
170:
171:
172:
173:
174:
175:
176:
177:
178:
179:
180:
|
<!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=utf-8" />
<title>Unbenanntes Dokument</title>
<style type="text/css">
<!--
.Stil1 {font-family: Verdana, Arial, Helvetica, sans-serif}
.Stil2 {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 18px;
font-weight: bold;
}
.Stil4 {font-family: Verdana, Arial, Helvetica, sans-serif; font-style: italic; }
-->
</style>
</head>
<body>
<h1 align="center" class="Stil1">-Name-</h1>
<table width="700" border="1" align="center" bordercolor="#F3CA8B">
<tr>
<td>-Bild-</td>
</tr>
</table>
<table width="441" border="1" align="center">
<tr>
<td bgcolor="#F3CA8B"><div align="center" class="Stil2">Allgemeines</div></td>
<td bgcolor="#F3CA8B"><div align="center" class="Stil2">Ausbildung</div></td>
</tr>
</table>
<table width="800" border="1" align="center" bordercolor="#F3CA8B">
<tr>
<td><table width="400" border="0">
<tr>
<td width="200"><table width="200" border="1" bgcolor="#F3CA8B">
<tr>
<td class="Stil1"><div align="center">Rasse</div></td>
</tr>
</table></td>
<td width="190" class="Stil4"> </td>
</tr>
<tr>
<td><table width="200" border="1" bgcolor="#F3CA8B">
<tr>
<td class="Stil1"><div align="center">Jahrgang</div></td>
</tr>
</table></td>
<td class="Stil4"> </td>
</tr>
<tr>
<td><table width="200" border="1" bgcolor="#F3CA8B">
<tr>
<td class="Stil1"><div align="center">Geschlecht</div></td>
</tr>
</table></td>
<td class="Stil4"> </td>
</tr>
<tr>
<td><table width="200" border="1" bgcolor="#F3CA8B">
<tr>
<td class="Stil1"><div align="center">Stockmaß</div></td>
</tr>
</table></td>
<td class="Stil4"> </td>
</tr>
<tr>
<td><table width="200" border="1" bgcolor="#F3CA8B">
<tr>
<td class="Stil1"><div align="center">Pfleger</div></td>
</tr>
</table></td>
<td class="Stil4"> </td>
</tr>
<tr>
<td><table width="200" border="1" bgcolor="#F3CA8B">
<tr>
<td class="Stil1"><div align="center">Gesundheit</div></td>
</tr>
</table></td>
<td class="Stil4"> </td>
</tr>
<tr>
<td><table width="200" border="1" bgcolor="#F3CA8B">
<tr>
<td class="Stil1"><div align="center">Hufzustand</div></td>
</tr>
</table></td>
<td class="Stil4"> </td>
</tr>
</table></td>
<td><table width="400" border="0">
<tr>
<td width="200"><table width="200" border="1" bgcolor="#F3CA8B">
<tr>
<td class="Stil1">Dressur</td>
</tr>
</table></td>
<td width="190" class="Stil4"> </td>
</tr>
<tr>
<td><table width="200" border="1" bgcolor="#F3CA8B">
<tr>
<td class="Stil1">Springen</td>
</tr>
</table></td>
<td class="Stil4"> </td>
</tr>
<tr>
<td><table width="200" border="1" bgcolor="#F3CA8B">
<tr>
<td class="Stil1">Vielseitigkeit</td>
</tr>
</table></td>
<td class="Stil4"> </td>
</tr>
<tr>
<td><table width="200" border="1" bgcolor="#F3CA8B">
<tr>
<td class="Stil1">Gelände</td>
</tr>
</table></td>
<td class="Stil4"> </td>
</tr>
<tr>
<td><table width="200" border="1" bgcolor="#F3CA8B">
<tr>
<td class="Stil1">Western</td>
</tr>
</table></td>
<td class="Stil4"> </td>
</tr>
<tr>
<td><table width="200" border="1" bgcolor="#F3CA8B">
<tr>
<td class="Stil1">Barockreiten</td>
</tr>
</table></td>
<td class="Stil4"> </td>
</tr>
<tr>
<td><table width="200" border="1" bgcolor="#F3CA8B">
<tr>
<td class="Stil1">Sonstiges</td>
</tr>
</table></td>
<td class="Stil4"> </td>
</tr>
</table></td>
</tr>
</table>
<p> </p>
<p> </p>
<table width="500" border="1" align="center" bordercolor="#F3CA8B" bgcolor="#FFFFFF">
<tr>
<td bgcolor="#F3CA8B"><div align="center" class="Stil2">Charackter</div></td>
</tr>
<tr>
<td><span class="Stil1">charackter</span></td>
</tr>
</table>
<p> </p>
<table width="500" border="1" align="center" bgcolor="#F3CA8B">
<tr>
<td><div align="center" class="Stil2">Fotoalbum</div></td>
</tr>
</table>
<table width="700" border="1" align="center" bordercolor="#F3CA8B">
<tr>
<td><div align="center"></div></td>
</tr>
</table>
<p> </p>
<p> </p>
<p align="center"> </p>
<p align="center"> </p>
</body>
</html>
|
|
@all: NEHME AUFTRÄGE AN!!!
Sandy27
So ist es schon besser
Nur bei der Ausbildung hätte ich noch gerne Potenzial daneben und die Schrift eine Stufe kleiner wenns geht
Lisa
Ich will dich nich nerven, also nich das du meinst!
Name: LisaMausi
E-Mail: vrh.dreamhorse@web.de
Hof: http://gestuetrabeneck.ge.funpic.de/rabeneck/HP
Anbieter: Funpic
Welche Optionen: Hofbesitzer, Emailadresse, Hofname, Hofadresse, Banner, online/offline (mit nem dropdown menü [so nennt man das doch oder?] bitte

)
Muss Optionen: Alle
Für welchen Bereich: Partner werden
Schriftart: Thahoma
Schriftfarbe: Schwarz
Unsichtbare oder sichtbare Tabelle: Unsichtbar
Bei sichtbarer Tabelle welche Farbe soll der Rahmen haben
Soll in der Tabelle der Hintergrund weiß bleiben oder eine andere Farbe haben: weiß
Soll ich es euch in die Seite einbauen: Nein (nur wenn ichs nich so gut hinbekomm

)
HTML Code der Seite: ---
Bilder: ---
Wünsche: Keine
edit: Sag mal, kannst du eigendlich auch solche Tabellen, mom ich häng ma ne skizze dran!
Viviana
Name: Mona
E-Mail:(Die Adresse an die die Formulare geschickt werden sollen)
monastaudinger@hotmail.de
Hof: Noch in Aufbau, Addy per PN
Anbieter: Oyla
Welche Optionen: unten
Muss Optionen: (Welche Sachen der Ausfüller angeben muss und welche er darf) siehe grafik
Für welchen Bereich: Pferdesteckbriefe
Schriftart
Verdana, Comicsans MS, Arial) Tahoma (Größe 8, wo noch kein text steht normal, ansonsten fett, oben rechts im großen feld kein text)
Schriftfarbe: siehe grafik
Unsichtbare oder sichtbare Tabelle: sichtabare
Bei sichtbarer Tabelle welche Farbe soll der Rahmen haben(auch mehrere Farben möglich) ist alles in der grafik
Soll in der Tabelle der Hintergrund weiß bleiben oder eine andere Farbe haben: durchsichtig oder #F4E5D0
Soll ich es euch in die Seite einbauen: nein, brauchst du nicht
HTML Code der Seite
nur wenn ich euch das Formular einbauen soll) -
Bilder: (Nur bei BilderFormularen) -
Wünsche: -
http://i36.tinypic.com/2n04s42.png
Könntes du in die Textfelder, wo jetzt in rot text drin steht ganz normal, wie der text, den ich dazufügen möchte einmal Text reinschreiben, damit ich weiß, wo ich des reinschreiben muss und in die zwei bildfelder diesen bild einsetzten:
http://i37.tinypic.com/bwis6.png
(des bitte ganz oben rechts in den kasten)
http://i36.tinypic.com/2ibnfh0.png
des bitte unten unter fotoalbum, mittig
wenn möglci allen text mittig in sein jeweiliges feld
WuLana
@sandy: Klar kann ich machen nur bei den Schulpferden steht das eben nicht dabi mach ich dir aber gleich soll ich die Abstammmung auch dazu nehmen?
@LisaMausi:
Kein Problem mach ich!Nur wenn du dir es dann im Programm anguckst sieht es halt dann komisch aus im Originalem aber nicht.Aber was meinst du mit Dropdown?
Meinst du das wo man das Auswählen kann ja,Nein und solche sachen wo wenn man draufklickt so eine Liste kommt das hier:

@Reining: Wird gemach hab ich gleich fertig.Ehm aber durchsichtig geht nicht das ist dann automatisch weiß
ANMELDESTOPP
Lisa
genausowas meinte ich mit dropdown
Wie nennt man das richtig?
WuLana

Ganz einfach Liste
Ehm aber bei dir bringsts nix wenn du ein Dropdown nimmst weil man da ja Textfelder braucht.
Lisa
aso ok
dann ohne
WuLana
Ok und welches Bild möchtest du einfügen?
Viviana
ok, dann die farbe, die ich da angegeben hat, ok
Lisa
Machst du eigendlih noch mein Formular?
WuLana
Jaja ich bin bei an der Arbeit!
@reininge: DIe ganzgleiche Farbe habe ich nicht aber eine die der deinen sehr ähnlich ist.