0
Try this way:
<title>
<?php echo $nomeproduto.' - Vendas'; ?>
</title>
0
1
Try this way:
<title>
<?php echo $nomeproduto.' - Vendas'; ?>
</title>
1
You’re doing the concatenation wrong, that close tag php
should appear later at the end of the concatenation:
<?php echo $nomeproduto.' - Vendas'; ?>
Browser other questions tagged php html
You are not signed in. Login or sign up in order to post.
An equivalent but more compact form would be
<?= "{$nomeproduto} - Vendas" ?>
– Woss