تطبيق7

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 2

<!

DOCTYPE html>
<html>
<head>
<?php
function hello()
{

echo "welcome";
}

?>
<title>PHP</title>
</head>
<body>
<?php
hello ();
?>
</body>
</html>

<!DOCTYPE html>
<html>
<head>
<?php
function info($name,$age)
{

echo "your name is:".$name."<br>"."age:".$age."<br>";


}
?>
<title>PHP7</title>
</head>
<body>
<?php
info("hasan",32);
info(" ali",22);
?>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<?php
function square($num)
{
$a= $num*$num;
return $a;

}
echo square(3);
?>
<title>PHP7</title>
</head>
<body>

</body>
</html>

<!DOCTYPE html>
<html>
<head>
<title>PHP7</title>
</head>
<body>
<form method="post">
No1:<input type ="Number" name ="No1">
No1:<input type ="Number" name ="No2">
<button type = "Number" name ="add">+</button>

</form>
<?php
if (isset($_POST['add'])){
echo $_POST['No1'] + $_POST['No2'];

}
?>
</body>
</html>

You might also like