I'm trying to concatenate PHP with Javascript, but I'm not getting it.
<button onclick="gravaDados('/" . <?php echo nomeCliente; ?> . /"')" class="btn-playpause">Play</button>
Thank you
I'm trying to concatenate PHP with Javascript, but I'm not getting it.
<button onclick="gravaDados('/" . <?php echo nomeCliente; ?> . /"')" class="btn-playpause">Play</button>
Thank you
Here we go:
<button onclick="gravaDados('<?= $nomeCliente; ?>')" class="btn-playpause">Play</button>
The tags <?= ?>
mean the same thing as <?php echo ...; ?>
.
The problem is that you do not need to escape the quotation marks because because it is with \
and at the same time you are doing concatenation outside PHP
Just like this:
<button onclick="return gravaDados('<?php echo $nomeCliente; ?>');" class="btn-playpause">Play</button>