I have the following problem.
I do a while mysql_fetch_arry function to get values from a table.
And i want at each line, in the end, a text field (ammount) and a button (add).
Code looks like this:
<?php while($info = mysql_fetch_array( $data )): ?><td id="articlenr" class="width1left"><a href="www.google.de\<?php echo $info['articlenr'] ?>"><?php echo $info['articlenr'] ?> </a></td>
<td class="width2center"><?php echo $info['stock']. " / " .$info['minstock'] ?></td>
<?php endwhile ?>
The second line is for article details, what is working.
So the problem is how can i function wich does a onclick Event on the button and the textfield on each line.
on button click should happen:
3.open a new window
Thank you for your help :)
<?php while($info = mysql_fetch_array( $data )): ?>
<td class="width1left"><a href="www.google.de\<?php echo $info['articlenr'] ?>"><?php echo $info['articlenr'] ?> </a></td>
<td class="width2center"><?php echo $info['stock']. " / " .$info['minstock'] ?></td>
<td><input type="text" id="amount<?php echo $info['articlenr'] >?"></td>
<td><input typ="button" value="add" onclick="openWindow('<?php echo $info['articlenr'] ?>');"></td>
<?php endwhile ?>
<script>
function openWindow(articlenr) {
var amount = document.getElementById('amount'+articlenr).value;
var url = ".../add.php?article="+articlenr+"&ammount="+amount;
window.open(url);
}
</script>