Hatte mir etwas in der art:
..
vorgestellt.
Habe aber keine Ahnung wie ich das in mein php Projekt einfügen kann.
PHP-Code:
<script language= "JavaScript">
<!--
function one2two() {
m1len = m1.length ;
for ( i=0; i<m1len ; i++){
if (m1.options[i].selected == true ) {
m2len = m2.length;
m2.options[m2len]= new Option(m1.options[i].text);
}
}
for ( i = (m1len -1); i>=0; i--){
if (m1.options[i].selected == true ) {
m1.options[i] = null;
}
}
}
function two2one() {
m2len = m2.length ;
for ( i=0; i<m2len ; i++){
if (m2.options[i].selected == true ) {
m1len = m1.length;
m1.options[m1len]= new Option(m2.options[i].text);
}
}
for ( i=(m2len-1); i>=0; i--) {
if (m2.options[i].selected == true ) {
m2.options[i] = null;
}
}
}
//-->
</script>
PHP-Code:
<select name=menu1 size=10 multiple>
<option>Menu Item 1</option>
<option>Menu Item 2</option>
<option>Menu Item 3</option>
<option>Menu Item 4</option>
<option>Menu Item 5</option>
</select><br>
<p align=center><input type="button" onClick="one2two()" value=" >> "></p>
</td><td align=center>
<select name=menu2 size=10 multiple >
<option>Menu Item 6</option>
</select><br>
<p align=center><input type="button" onClick="two2one()" value=" << " ></p>
Habe aber keine Ahnung wie ich das in mein php Projekt einfügen kann.
Kommentar