Hi,
OK, let's say I have this example as a query:
$query = "SELECT username, fullname, type FROM Users
HAVING Users.username LIKE '%".mysql_real_escape_string($find_string)."%' OR Users.fullname LIKE '%".mysql_real_escape_string($find_string)."%'";
$result = @($query);
I would like to modify the $result variable and add more data at the beginning of it. For example, I would need to add two columns [Edit]+[Delete].
I don't want to add these columns in mysql table, I want to be able to add them by hand coding it instead. Can someone help me out please?
Thank you 🙂