Tagged Questions
1
vote
3answers
473 views
Jquery Delete From Table
This code does following:
Click on "Delete" in item row -> deletes item row
Click on "Delete" in category row -> deletes category row and all item rows (in all table)
Need it to do following:
...
0
votes
2answers
47 views
Create table closure on last record result
I am creating a basic search function for an order cart. I have a loop that looks like this :
$dataQuery = "SELECT * FROM `products` WHERE upper(`desc`) LIKE'%$find%'";
$data = ...