0
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 exits this: http://www.dpauladesigner.com.br/? id_teste=. %3C? php%20$id_test. %20? %3E and does not leave the value of my variable.
Thank you very much!!
– William De Paula