I have a script that would change the value of a input field:
<script language="javascript">
function klientid() {
var getid = document.getElementById("getidfromsearch");//results
var klid = document.getElementById("idklienta"); //input field
if(getid != "0") {
klid.value = getid.textContent;
}
</script>
a search engine and this is how results are printed:
<?php
while($rowmilion = mysqli_fetch_array($resultmilion)) {
?>
<a href="javascript:klientid()">
<table>
<tr>
<td style="font-weight:bold; width: 160px; text-align:right;">ID:</td>
<td style="width:200px;" id="getidfromsearch"><?php echo $rowmilion['id']; ?></td>
</tr>
</table>
</a>
<?php } ?>
Now, when as the result there is only one record and I click on the link, it does change the value of a input field fine.
When result consists of more than one record, whichever link I would click, it will always get the value from the first record for example:
ID: 100
ID: 200
ID: 300
So when I click on the third position, it will still change the value of a input field to 100 instead of 300.
I quess, this is because all records get the same "ID"... But still, I can't make it work.
