echo "<a href=\"/page2.php?test=".$_GET['test']."\">page2</a>";
$link="/page2.php?";
foreach($_GET as $key=>$value)
{
$link.="$key=$value&";
}
echo "<a href=\"$link\">page2</a>";
$('.but').on('click', function() {
// действия, которые будут выполнены при наступлении события...
var count=$(this).attr("id");
var name = count;
$.ajax({
type: "POST",
url: "delete.php",
data: {fname:name}
success: function() {
$("."+name).remove();
},
})
});
<p class="article_cost" id="test">213</p>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
alert($(".article_cost").html());
$.post(
"/ajaxtest.php",
{
calculated: $(".article_cost").html()
},
onAjaxSuccess
);
</script>
$f=fopen("log.txt","a");
fwrite($f,$_POST['calculated']);