File "core.php"
Full Path: /home/analogde/www/neurone/test/core.php
File size: 451 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* Created by PhpStorm.
* User: Patrice
* Date: 04/04/2015
* Time: 23:32
*/
echo "Salut";
$i = 50;
$v = $i + 8;
echo $v;
?>
<html>
<head>
<title>Hello World!</title>
</head>
<body>
<script>
function traiter()
{
var i = 5;
i = i + 8;
alert("Message");
}
</script>
</body>
<input name="button" type="button" onClick="traiter()" value = "Bouton" >
</html>