gwm
This commit is contained in:
parent
76544bda1e
commit
7ff4057a1c
@ -63,7 +63,12 @@
|
|||||||
Transaction by :</td>
|
Transaction by :</td>
|
||||||
<td
|
<td
|
||||||
style="padding: 10px; border-bottom: 1px solid #ededed; color: #455056;">
|
style="padding: 10px; border-bottom: 1px solid #ededed; color: #455056;">
|
||||||
<?= $profile[0]['name']." ".$profile[0]['last_name']." (".$profile[0]['mobile'].")"; ?>
|
<?= $profile[0]['name']." ".$profile[0]['last_name'] ?>
|
||||||
|
<?php
|
||||||
|
if($profile[0]['mobile'] != ''){
|
||||||
|
$phone_number = preg_replace('/[^\w]_/', '', $profile[0]['mobile']);
|
||||||
|
echo "(".$phone_number.")"; }
|
||||||
|
?>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
</tbody>
|
</tbody>
|
||||||
|
|||||||
@ -65,7 +65,12 @@
|
|||||||
Transaction by :</td>
|
Transaction by :</td>
|
||||||
<td
|
<td
|
||||||
style="padding: 10px; border-bottom: 1px solid #ededed; color: #455056;">
|
style="padding: 10px; border-bottom: 1px solid #ededed; color: #455056;">
|
||||||
<?= $profile[0]['name']." ".$profile[0]['last_name']." (".$profile[0]['mobile'].")"; ?>
|
<?= $profile[0]['name']." ".$profile[0]['last_name']; ?>
|
||||||
|
<?php
|
||||||
|
if($profile[0]['mobile'] != ''){
|
||||||
|
$phone_number = preg_replace('/[^\w]_/', '', $profile[0]['mobile']);
|
||||||
|
echo "(".$phone_number.")"; }
|
||||||
|
?>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
</tbody>
|
</tbody>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user