diff --git a/mari batmanashvili/Capture.PNG b/mari batmanashvili/Capture.PNG
new file mode 100644
index 0000000..1f53cfe
Binary files /dev/null and b/mari batmanashvili/Capture.PNG differ
diff --git a/mari batmanashvili/images/uk.jpg b/mari batmanashvili/images/uk.jpg
new file mode 100644
index 0000000..5db5f8b
Binary files /dev/null and b/mari batmanashvili/images/uk.jpg differ
diff --git a/mari batmanashvili/task.php b/mari batmanashvili/task.php
new file mode 100644
index 0000000..c97a4f0
--- /dev/null
+++ b/mari batmanashvili/task.php
@@ -0,0 +1,81 @@
+
+
+
+
+
+
+ Task 1
+
+
+
+
+
+
+
+Hello ";
+ echo "First Name: " .$fname.'
';
+ echo "
";
+ echo "Last Name: " .$lname.'
';
+ echo "
";
+ ?>
+
+ Please fill in all the fields.";
+ }
+ }
+?>
+
+
+
\ No newline at end of file
diff --git a/mari batmanashvili/task2.css b/mari batmanashvili/task2.css
new file mode 100644
index 0000000..a484acd
--- /dev/null
+++ b/mari batmanashvili/task2.css
@@ -0,0 +1,52 @@
+body{
+ background-color: rgb(151, 157, 158);
+ box-sizing: border-box;
+ margin: 0;
+ padding: 0;
+ background-image: url("Capture.PNG");
+ background-repeat: no-repeat;
+ background-size: 900px;
+ background-color: black;
+ background-size: 100%;
+
+
+}
+.Name_Control{
+ width: 94%;
+ height: 50px;
+ border: 4px solid blue;
+}
+.submit{
+ height: 45px;
+ width: 200px;
+ color: rgb(10, 10, 10);
+ margin-left: 40%;
+ border: none;
+ background-color: rgb(255, 255, 255);
+ cursor: pointer;
+}
+.first_repo{
+ display: flex;
+ justify-content: space-around;
+ color: white;
+ background-color: rgb(7, 9, 100);
+ align-items: center;
+}
+.picture{
+ height: 200px;
+ width: 200px;
+}
+.folo{
+ height: 100px;
+ width: 100%;
+ background-color: rgb(229, 255, 0);
+ color: white;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+}
+.Pics-of-Followers{
+ display: flex;
+
+
+}
diff --git a/mari batmanashvili/task2.php b/mari batmanashvili/task2.php
new file mode 100644
index 0000000..244bbd0
--- /dev/null
+++ b/mari batmanashvili/task2.php
@@ -0,0 +1,110 @@
+
+
+
+
+
+
+
+ Document
+
+
+* search is empty ";
+ echo $eror;
+ }else{
+ $name=$_POST['name'];
+ $manipulation=1;
+ }
+}
+//User Search
+$headers=[
+ 'User-Agent: Generate new token',
+ 'Authorization: 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'
+];
+if($manipulation==1)
+{
+$ch =curl_init("https://api.github.com/users/$name");
+curl_setopt($ch,CURLOPT_HTTPHEADER,$headers);
+curl_setopt($ch,CURLOPT_RETURNTRANSFER,true);
+$responce=curl_exec($ch);
+curl_close($ch);
+$data=json_decode($responce,true);
+ $imge= $data["avatar_url"];
+ $saxeli=$data['name'];
+ $followers=$data['followers'];
+ $user=$data['login'];
+
+ if($followers > 0){
+ $follower_manipulation=1;
+ }
+ else{
+ $follower_manipulation=2;
+ }
+}
+
+?>
+
+
+
+
+
+ name : $saxeli
+ Username : $user
+ Followers : $followers
+
+ Folowers
+ ";
+
+ echo $info;
+ }
+
+ if($follower_manipulation==1)
+ {
+ $ch =curl_init("https://api.github.com/users/$name/followers");
+ curl_setopt($ch,CURLOPT_HTTPHEADER,$headers);
+ curl_setopt($ch,CURLOPT_RETURNTRANSFER,true);
+ $responce=curl_exec($ch);
+ curl_close($ch);
+ $data=json_decode($responce,true);
+ foreach($data as $repositori)
+ {
+ $suraTi= $repositori['avatar_url'];
+ $id= $repositori['id'];
+ $login= $repositori['login'];
+ $element = "
+
+
+

+
ID : $id
+
USERNAME : $login
+
+ ";'
';
+ echo $element;
+ }
+}
+if( $follower_manipulation==2){
+ $no_follovers= "User hasnot any Followers
";
+ echo $no_follovers;
+}
+?>
+
+
+
\ No newline at end of file