-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest3.php
More file actions
61 lines (48 loc) · 1015 Bytes
/
test3.php
File metadata and controls
61 lines (48 loc) · 1015 Bytes
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
<?php
include('functions.php');
// 608
// $user = '602d5b998a635';
$user = '610efb74a2b98';
$key = category_row_count();
$array = category_array();
$Bills = calc_bills($user);
print_r($array);
// printf(calc_cost($array_budget));
// printf(between(8, 1, 3));
// $pay = 200;
// if ( calc_cost($array_budget) <= $pay - 2) {
// echo "yup";
// } else {
// echo "nope";
// }
// print_r($array_budget);
// array(
// "Category" => 'Transportation',
// "Budget" => "$Transportation"
// ),
// array(
// "Category" => 'Bills',
// "Budget" => "$Bills"
// ),
// array(
// "Category" => 'Gifts',
// "Budget" => "$Gifts"
// ),
// array(
// "Category" => 'Entertainment',
// "Budget" => "$Entertainment"
// ),
// array(
// "Category" => 'Grocery',
// "Budget" => "$Grocery"
// ),
// array(
// "Category" => 'Self',
// "Budget" => "$Self"
// ),
// array(
// "Category" => 'Investment',
// "Budget" => "$Investment"
// )
// );
?>