I have a script with a link and a variable, how to pass the value of this variable inside the link in the script?
if($mensagem_post == "1"){
echo'<script> swal({
title: "Você tem certeza?",
text: "Este arquivo não poderá ser visualizado mais!",
type: "warning",
showCancelButton: true,
confirmButtonColor: "#000",
confirmButtonText: "Sim, deletar!",
cancelButtonText: "Não, cancelar!",
closeOnConfirm: false,
closeOnCancel: false
},
function(isConfirm){
if (isConfirm) {
swal("Cancelado", "Seu arquivo foi excluido", "success");
setTimeout(function(){
window.location.href = "http://www.dpauladesigner.com.br?id_teste=.<?php $id_teste. ?>";
}, 2000);
} else {
swal("Cancelado", "Seu arquivo está salvo", "error");
}
}); </script>';
The result of the link comes out this: link $ id_teste.% 20?% 3E and the value of my variable does not come out.