我想将“ID”发送到 JS 函数,然后再次将相同的 ID 从 JS 函数发送到 php 函数。请告诉我我的代码有什么问题!
<script type="text/javascript">
function deleteclient(ID){ //I receive the ID correctly until now!
var x = "<?php deleteclient11('ID');?>";
return false;
}
</script>
<?php
function deleteclient11($x)
{
echo "$x";
}
?>