wuselmensch
Grünschnabel
hallo,
ich hab mir mal ein noten script erstellt für meine Gitarre,wie kann ich bei diesem script nun machen, das jedes 4. bild das ein einde für einen takt bedeutet?
ich ha mal was probiert.. aber das ist nicht wirklich so raus gekommen wie ich wollteXD
beispiel auf: http://wuselmensch.ch/gitarre/ton.php
thx wusel
ich hab mir mal ein noten script erstellt für meine Gitarre,wie kann ich bei diesem script nun machen, das jedes 4. bild das ein einde für einen takt bedeutet?
ich ha mal was probiert.. aber das ist nicht wirklich so raus gekommen wie ich wollteXD
PHP:
<?php
include("pwd/pwd.php");
$note = $_POST['note'];
?>
<!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>Unbenanntes Dokument</title>
</head>
<body>
<form method="POST" action="ton.php">
<?php
$arraykey = 0;
if ($note == "") {
}
else{
foreach($note as $val){
echo '<input type="hidden" name="note['.$arraykey.']" value="'.$val.'">';
$arraykey++;
}
}
?>
<br >Ton:<br > <select size="1" name="note[<?php echo $arraykey; ?>]">
<?php
$sql = "SELECT `name` FROM `ton` ORDER BY `name` ASC";
$result = mysql_query($sql) or die(mysql_error());
while($line = mysql_fetch_row($result)){
foreach($line as $val){
echo '<option value="'.$val.'" selected>'.$val.'</option>';
}
}
?>
</select><br><br>
<input type="submit" value="hinzufügen"><br>
</form>
<?php
if ($note == "") {
} else{
?>
<table border="0">
<tr>
<?php
foreach($note as $array){
$sql2 = "SELECT `griff` FROM `ton` WHERE `ton`.`name` = \"$array\"";
$result = mysql_query($sql2) or die(mysql_error());
while($line = mysql_fetch_row($result)){
foreach($line as $val){
echo '<td>'.$val.'</td>';
}
}
}
echo '<img src="http://www.tutorials.de/forum/images/start.png" />';
foreach($note as $array){
echo '<img src="http://www.tutorials.de/forum/images/'.$array.'.png" width="18" height="118" />';
}
if($arraykey % 4 == 0){
echo '<img src="http://www.tutorials.de/forum/images/split.png" />';
}
else
{
}
echo '<img src="http://www.tutorials.de/forum/images/end.png" />';
}
?>
</tr>
</table>
</body>
</html>
beispiel auf: http://wuselmensch.ch/gitarre/ton.php
thx wusel
Zuletzt bearbeitet: