Is it possible to add variables in a php string literal? Something like:
echo "<td>{$j} + {$i}</td>";
or
echo "<td>{$j + $i}</td>";
but neither of those work
Is it possible to add variables in a php string literal? Something like:
echo "<td>{$j} + {$i}</td>";
or
echo "<td>{$j + $i}</td>";
but neither of those work