phpbar.de logo

Mailinglisten-Archive

[php] Kleines Problem mit Variabeln

[php] Kleines Problem mit Variabeln

Martin Heller php_(at)_phpcenter.de
Fri, 8 Jun 2001 18:05:05 +0200


Hi Liste,

ich hab da ein kleines Problem mit einer n x n Datenbank-Tabelle, die ich
anständig visualisieren möchte,
damit man aus einer Tabelle mehrere Einträge in eine Vorauswahl addieren
kann.
Dazu habe ich mir ein kleine java-Script gebastelt. Ich hab jetzt aber das
Problem,
dass ich die Variabeln nicht in php rüber bekommen. Hat vielleicht einer
einen Vorschlag, wie man so etwas besser lösen kann ??
Danke schon mal im Voraus

Gruss Martin




<html>
<head>
<script>
function add(test) {
for (var i=0;i< test.length; i++)
 {
 if (test[i].selected){
  var newitem=test[i].text;
  var index=test[i].selectedIndex;
  }
 }
document.form.list1[document.form.list1.length] = new Option(newitem,
document.form.list1.length);
}
function del() {
if (document.form.list1.selectedIndex >= 0) {
document.form.list1.options[document.form.list1.selectedIndex]=null;
document.form.list1.selectedIndex=0;
}
}
</script>
</head>
<body>
<center>
<form name="form" method="post" action="text.php">
<select name="list" size="10">
<option>List Item #1
<option>List Item #2
<option>List Item #3
<option>List Item #4
</select>
<select name="list1" size="10" multiple>
</select>
<p><input type="button" value="Add" onClick=add(this.form.list)> <input
type="button" value="Del" onClick="del()">
<input type="submit" name="Submit" value="SUBMIT">
</form>
</center>
</body>
</html>





php::bar PHP Wiki   -   Listenarchive