You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the edit_customers.php file there is the following line:
($operation == 'edit') ? $edit = true : $edit = false;
Can a new operation be added to view records as well?
Then in the customers.php file the following could be added: <a href="edit_customer.php?customer_id=<?php echo $row['id']; ?>&operation=view" class="btn btn-info"><i class="glyphicon glyphicon-eye-open"></i></a>
Is this possible?
Thanks
The text was updated successfully, but these errors were encountered:
Hi there,
In the edit_customers.php file there is the following line:
($operation == 'edit') ? $edit = true : $edit = false;
Can a new operation be added to view records as well?
Then in the customers.php file the following could be added:
<a href="edit_customer.php?customer_id=<?php echo $row['id']; ?>&operation=view" class="btn btn-info"><i class="glyphicon glyphicon-eye-open"></i></a>
Is this possible?
Thanks
The text was updated successfully, but these errors were encountered: