У меня есть следующий код, и он не печатает значение для переменной $item
.Как мне сделать это вернуть значение элемента.
<?php
$item = "wewewe";
$plu = $_POST[‘plu’];
$img = $_POST[‘img’];
$password = $_POST[‘password’];
echo '<tr>
<td><input type="checkbox"></td>
<td>'.$item.' </td>
<td>666</td>
<td> <img src="apple.jpg" alt=""> </td>
</tr>'
?>