File tree 1 file changed +5
-6
lines changed
1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change 12
12
13
13
<div class="card-body">
14
14
15
- <table class="table tabled-bordered border border-dark">
15
+ <table class="table border border-dark">
16
16
<thead class="thead-dark">
17
17
<tr>
18
18
<th>Client</th>
19
19
<th>Stripe Customer ID</th>
20
20
<th>Stripe Payment ID</th>
21
- <th>Action</th>
21
+ <th class="text-center" >Action</th>
22
22
</tr>
23
23
</thead>
24
24
<tbody>
25
25
26
26
<?php
27
27
while ($ row = mysqli_fetch_array ($ stripe_clients_sql )) {
28
28
$ client_id = intval ($ row ['client_id ' ]);
29
- $ client_name = sanitizeInput ($ row ['client_name ' ]);
30
- $ stripe_id = sanitizeInput ($ row ['stripe_id ' ]);
31
- $ stripe_pm = sanitizeInput ($ row ['stripe_pm ' ]);
29
+ $ client_name = nullable_htmlentities ($ row ['client_name ' ]);
30
+ $ stripe_id = nullable_htmlentities ($ row ['stripe_id ' ]);
31
+ $ stripe_pm = nullable_htmlentities ($ row ['stripe_pm ' ]);
32
32
33
33
?>
34
34
68
68
69
69
<?php
70
70
require_once "includes/footer.php " ;
71
-
You can’t perform that action at this time.
0 commit comments