How to coordinate a php variable with a javascript variable and store the final result in a php variable.

<?php
    //this is php
    $phpvar=5+10;
?>

<html>
<script lang='javascript'> 
  //this is javascript
  javavar=<?php echo $phpvar;?> ;
  alert(javavar);

</script>
<body>
this is html
</body>

</html>
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.