ciao cavicchiandrea grazie della risposta...
il codice della tabella è questo
Codice PHP:
// Attempt select query execution
$sql = "SELECT * FROM inventario ORDER BY inventario.Cod_prodotto ASC";
if($result = mysqli_query($link, $sql)){
if(mysqli_num_rows($result) > 0){
echo "<div class='tutto2'>
<table id='tabella' class='mytable'>";
echo "<thead>";
echo "<th class='noselect'>Cod.prodotto</th>";
echo "<th class='noselect'>Categoria e Percentuali IVA</th>";
echo "<th class='noselect'>Descrizione</th>";
echo "<th class='noselect'>Immagine</th>";
echo "<th class='noselect'>Imponibile</th>";
echo "<th class='noselect'>Prezzo di acquisto<br>dai fornitori (Giá ivato)</th>";
echo "<th class='noselect'>Prezzo di vendita<br>al pubblico (Giá ivato)</th>";
echo "<th class='noselect'>Quantitá fatturate rimaste</th>";
echo "<th class='noselect'>Quantitá non fatturate rimaste</th>";
echo "<th class='noselect'><font color='red'>Quantitá rimaste</font></th>";
echo "<th class='noselect'><font color='green'>Quantitá vendute</font></th>";
echo "<th class='noselect'><font color='#9400D3'>Credito</font></th>";
echo "<th class='noselect'><font color='#ff6600'>POS</font></th>";
echo "<th class='noselect'>Scontrinato</th>";
echo "<th class='noselect'>Non Scontrinato</th>";
echo "<th class='noselect'>Venduta a Domicilio</th>";
echo "<th class='noselect'>Venduta al negozio</th>";
echo "</thead>";
while($row = mysqli_fetch_array($result)){
echo "<tbody class='hover'><tr>";
echo "<td><button class='onblur-refocus-barcodes' id='copyBtn'>Copia</button><span id='discountCode'>" . $row['Cod_prodotto'] . "</span></td>";
echo "<td>" . $row['Categoria'] . "</td>";
echo "<td>" . $row['Descrizione'] . "</td>";
echo "<td><img src='data:image/jpeg;base64,".base64_encode($row['Img'])."'/></td>";
echo "<td>" . $row['imponibile'] . "</td>";
echo "<td>" . $row['Prezzo_acquisto'] . "</td>";
echo "<td>" . $row['Prezzo_unitario'] . "</td>";
echo "<td>" . $row['Quantita_fatturate'] . "</td>";
echo "<td>" . $row['Quantita_n_fatturate'] . "</td>";
echo "<td><font color='red'><b>" . $row['Quantita_rimaste'] . "</b></font></td>";
echo "<td><font color='green'><b>" . $row['Quantita_vendute'] . "</b></font></td>";
echo "<td><font color='#9400D3'><b>" . $row['credito'] . "</b></font></td>";
echo "<td><font color='#ff6600'><b>" . $row['pos'] . "</b></font></td>";
echo "<td>" . $row['scontrinato'] . "</td>";
echo "<td>" . $row['non_scontrinato'] . "</td>";
echo "<td>" . $row['v_domicilio'] . "</td>";
echo "<td>" . $row['v_negozio'] . "</td>";
echo "</tr></tbody>";
}
echo "</table></div>";
// Free result set
mysqli_free_result($result);
volevo appunto inserire un bottone per far copiare all'utente quello che io chiamo Cod.prodotto ...