Login     Sign up
Matthew Medlin (@matthewmedlin)
94 months ago
573 Views

how do I use the parameters? I have tried every way I could think of and it just outputs the way I have it and not the user data.

1 people followed this question
1

It is gone. I use 9.9.4, but it is same with you.
So I just add below.

function get_ad($type=''){
    global $client;

    if($type == '') return '';
    $ad_text = get_gvar($type);
    if(!strlen($ad_text)) return '';
    $ad_search = array('jcow_user_id','jcow_user_username','jcow_user_fullname');
    $ad_replace = array($client['id'],$client['username'],$client['fullname']);
    return str_replace($ad_search,$ad_replace,$ad_text);
}
foken @shigeru
94 months ago