03-20-2017, 11:21 AM
I agree with Jug...if you could do your query itself inside that second page, that would work. The other option is to do some sort of function in the usersc/includes/custom_functions.php
You can do something like
function getColumn($id){
//create function here
}
and then you call it by doing
getColumn($user->data()->id);
and the function would do the query to your row for you. Like JUG said...if you post the query you're trying to do, we can make it work.
Glad you're enjoying UserSpice!
You can do something like
function getColumn($id){
//create function here
}
and then you call it by doing
getColumn($user->data()->id);
and the function would do the query to your row for you. Like JUG said...if you post the query you're trying to do, we can make it work.
Glad you're enjoying UserSpice!