-
Notifications
You must be signed in to change notification settings - Fork 0
/
farig1.php
55 lines (50 loc) · 1.43 KB
/
farig1.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
<?php
/**
* Created by PhpStorm.
* User: alihamza
* Date: 5/22/18
* Time: 5:05 PM
**/
/*
include_once("connection.php");
include_once ("userData.php");
session_start();
follow("BSEF17A020","BSEF17A023",$conn);*/
?>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Hahaah</title>
<!-- Font Awesome Icons -->
<link rel="stylesheet" href="plugins/font-awesome/css/font-awesome.min.css">
<!-- Theme style -->
<link rel="stylesheet" href="dist/css/adminlte.min.css">
<!-- Custom style -->
<link rel="stylesheet" href="dist/css/custom.css">
<script src="plugins/jquery/jquery.min.js"></script>
<!-- Bootstrap 4 -->
<script src="plugins/bootstrap/js/bootstrap.bundle.min.js"></script>
<!-- AdminLTE App -->
<script src="dist/js/adminlte.min.js"></script>
<!-- Google Font: Source Sans Pro -->
<!-- <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700" rel="stylesheet">-->
</head>
<body class="hold-transition sidebar-mini">
<button id ="load">load</button>
<div id="content">
</div>
<script>
$(document).ready(function () {
$("#load").click(function(){
$.post("ajax/messageGet.php",{
},function (data,status) {
alert(data);
alert(status);
});
});
});
</script>
</body>
</html>