Future Vision BIE
ONE STOP FOR ALL STUDY MATERIALS & LAB PROGRAMS
×
Note
Login Made Mandatory to Access the Free Study Materials -ADMIN
Page Loading! Please Wait
WEB TECHNOLOGY LABORATORY WITH MINI PROJECT
17CSL77
15CSL77
[As per Choice Based Credit System (CBCS) scheme]
CREDITS – 02
Subject Code - 17CSL77
SEMESTER - VII
Advertisement
WEB TECHNOLOGY LABORATORY WITH MINI PROJECT
17CSL77
Program - 8a
Write the PHP programs to do the following -
a. Implement simple calculator operations.
b. Find the transpose of a matrix.
c. Multiplication of two matrices.
d. Addition of two matrices
Authentication Successful But Step-2 is Pending. Complete Step-2 to Access Study Materials
Or Logout & Login with an Another Account
You have not logged in to the Future Vision BIE.
Sorry to inform you, Your Account Has been Blocked. By the Admin.
Your User ID: ID
Advertisement
You Have Successfully Logged in.
Welcome,User
Your User ID: ID
PROGRAM 8A
Write the PHP programs to do the following -
a. Implement simple calculator operations.
b. Find the transpose of a matrix.
c. Multiplication of two matrices.
d. Addition of two matrices
File Name: PROG8A.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81 <html>
<head>
<style>
* {
font-size: 25px;
padding: 5px;
}
table,
td,
th {
border: 1px solid blue;
width: 33%;
text-align: center;
background-color: darkkhaki;
}
table {
margin: auto;
}
</style>
</head>
<body>
<form method="post" action="PROG8a.php">
<table>
<caption>
<h2> SIMPLE CALCULATOR </h2>
</caption>
<tr>
<td>First Number:</td>
<td><input type="text" name="num1" value=" <?php
//this is Optional Code Just to make the entered value visible through out
if (isset( $_POST [ 'submit' ]))
{
echo $_POST [ 'num1' ];
}
else
{
echo "" ;
} ?> " /></td>
<td rowspan="2"><button type="submit" name="submit" value="calculate">Calculate</td>
</tr>
<tr>
<td>Second Number:</td>
<td><input type="text" name="num2" value=" <?php
//this is Optional Code Just to make the entered value visible through out
if (isset( $_POST [ 'submit' ]))
{
echo $_POST [ 'num2' ];
}
else
{
echo "" ;
} ?> " /></td>
</tr>
</form>
<?php
if (isset( $_POST [ 'submit' ])) // it checks if the input submit is filled
{
$num1 = $_POST [ 'num1' ];
$num2 = $_POST [ 'num2' ];
if (is_numeric( $num1 ) and is_numeric( $num2 ) )
{
echo "<tr><td> Addition :</td><td><p>" .( $num1 + $num2 ). "</p></td>" ;
echo "<tr><td> Subtraction :</td><td><p> " .( $num1 - $num2 ). "</p></td>" ;
echo "<tr><td> Multiplication :</td><td><p>" .( $num1 * $num2 ). "</p></td>" ;
echo "<tr><td>Division :</td><td><p> " .( $num1 / $num2 ). "</p></td>" ;
echo "</table>" ;
}
else
{
echo "<script> alert(' ENTER VALID NUMBER');</script>" ;
}
}
?>
</body>
</html>
Output
Advertisement
×
Note
Page Number is specified to navigate between Pages... SYS = Syllabus P = Program
-ADMIN
Home Page - WTA LAB
SYS
P-1
P-2
P-3
P-4
P-5
P-6
P-7
P-8A
P-8B
P-9
P-10
×
Note
ANY PROBLEM IN Login or Downloading, YOU ARE FREE TO CONTACT US... -ADMIN
Advertisement
lIKE OUR CONTENT SUPPORT US BY FOLLOWING US ON INSTAGRAM : @futurevisionbie
More Materials will BE UPLOADED "AS SOON AS POSSIBLE"
For immediate Notification Join the Telegram Channel
7th Core Subject
▣ 17CS71 - Web Technology and its applications - WTA
▣ 17CS72 - Advanced Computer Architectures - ACA
▣ 17CS73 - Machine Learning - ML
7th Professional Elective - 3
▣ 17CS741 - Natural Language Processing - NLP
▣ 17CS742 - Cloud Computing and its Applications - CCA
▣ 17CS743 - Information and Network Security - INS
▣ 17CS744 - Unix System Programming - USP
7th Professional Elective - 4
▣ 17CS751 - Soft and Evolutionary Computing - SEC
▣ 17CS752 - Computer Vision and Robotics - CVR
▣ 17CS753 - Digital Image Processing - DIP
▣ 17CS754 - Storage Area Networks - SAN
7th Lab & Project
▣ 17CSL76 - Machine Learning Laboratory - ML Lab
▣ 17CSL77 - Web Technology Laboratory with mini project -
WTA Lab
▣ 17CSP78 - Project Work Phase–I + Project work Seminar -
Project
Copyright By Future Vision BIE 2018-2021