Skip to content

Commit 32bb621

Browse files
committed
Task AJ-0001
Checking cherry picking
1 parent 414b196 commit 32bb621

File tree

4 files changed

+21
-10
lines changed

4 files changed

+21
-10
lines changed

Form.html

+7
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,12 @@
44
</head>
55
<body>
66
<h1>Body comes here..</h1>
7+
8+
<header>
9+
<h1>Body comes here..</h1>
10+
</header>
11+
<footer>
12+
<h1>Body comes here..</h1>
13+
</footer>
714
</body>
815
</html>

Index.php

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?php
2-
echo "Hello World...";
2+
echo "Hello World...";
33

4-
echo "Commit 2nd time";
5-
?>
4+
echo "Commit 2nd time";
5+
6+
echo "Commit 3rd time";

Login.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?php
2-
echo "New file added...";
3-
echo "New comment added on 2nd commit...";
2+
echo "New file added...";
43

4+
echo "New comment added on 2nd commit...";

helper.php

+8-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
<?php
2-
function_exists( function pre($data){
3-
echo "<pre>";
4-
print_r($data);
5-
echo "</pre>";
6-
});
2+
if (!function_exists('pre')) {
3+
function pre($data)
4+
{
5+
echo "<pre>";
6+
print_r($data);
7+
echo "</pre>";
8+
}
9+
}

0 commit comments

Comments
 (0)