-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnotifications.php
54 lines (50 loc) · 1.36 KB
/
notifications.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
<?php
$data='{
"notifications":
[
{
"title"=>"Fees Payment",
"notificationID"=>15,
"date"=>"12-01-2010",
"message"=>"Hello, you have paid fees from your acc 344444 to the JKUAT acc 077-2772."
},
{
"title"=>"Fees Payment",
"notificationID"=>6,
"date"=>"12-01-2011",
"message"=>"Hello customer, you have paid fees from your acc 344444 to the JKUAT acc 077-2772."
},
{
"title"=>"Fees Payment",
"notificationID"=>5,
"date"=>"12-01-2011",
"message"=>"Hello customer, you have paid fees from your acc 344444 to the JKUAT acc 077-2772."
},
{
"title"=>"Fees Payment",
"notificationID"=>4,
"date"=>"12-01-2011",
"message"=>"Hello customer, you have paid fees from your acc 344444 to the JKUAT acc 077-2772."
},
{
"title"=>"Fees Payment",
"notificationID"=>3,
"date"=>"12-01-2011",
"message"=>"Hello customer, you have paid fees from your acc 344444 to the JKUAT acc 077-2772."
},
{
"title"=>"BE",
"notificationID"=>20,
"date"=>"12-01-2011",
"message"=>"Hello masai you have paid fees from your acc 344444 to the JKUAT acc 077-2772."
},
{
"title"=>"Fees Payment",
"notificationID"=>1,
"date"=>"12-01-2011",
"message"=>"Hello customer, you have paid fees from your acc 344444 to the JKUAT acc 077-2772."
}
]
}';
echo $data;
?>