You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
onthedots/code/phpinfo.php

23 lines
352 B

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

<?php
// Call PHP function from javascript without ajax
function myphpfunction($b) {
echo "aa ".$b;
}
?>
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>PHP & Javascript</title>
<script type="text/javascript">
   console.log("<?php echo myphpfunction("aya")?>");
</script>
<?php
var_dump($_COOKIE);
?>
</head>
<body>
</body>
</html>