Hello, I make a website - something like a store. When ordering, you need to specify the mail <input type="text" name="mail" size="20"> , everything is fine, it sends a request with the mail, but I need to send the product id and product name. Here is the ID code of the product and name.
<tr> <td>Id товара: </td> <td><div name="Id"><?php echo $_GET['Id']; ?></div></td> </tr> <tr> <td>Название:</td> <td><div name="Name"><?php echo $_GET['Name'];?></div></td> </tr> I hope for your help