Jump to content

Recommended Posts

Another question. I am trying to make a bbcode that shows a user + a link to his account.

 

So, [user=1] would create a link to user 1's account

 

This is what I've added to the bbcode function:

 

$text = preg_replace('#\[user=(.*?)\]#si', '<a href="'.BASEDIR.'user?id=\1">'.getusername('\1').'</a>', $text);

 

And this is my getusername() function:

 

function getusername($user_id)

{

$user_id = stripinput((int)$user_id);

if($user_id == 0){

return 'INVALID USER ID';

}else{

$gsql = dbquery("SELECT user_name FROM ".DB_PREFIX."users WHERE user_id = '$user_id' LIMIT 1");

if(dbrows($gsql)){

$gdata = dbarray($gsql);

return $gdata['user_name'];

}else{

return 'ACCOUNT NOT FOUND';

}

}

return false;

}

 

I've highlighted in blue what i think is causing the problem. Right now, it is correctly making a link to the user account, but it's giving INVALID USER ID for the user name.

Link to comment
https://forums.phpfreaks.com/topic/99640-help-w-bbcode/
Share on other sites

This:

$text = preg_replace_callback('#\[user=(.*?)\]#si', '<a href="'.BASEDIR.'user?id=\1">'.getUserName('\1').'</a>', $text);

 

Returns this error:

 

Warning: preg_replace_callback() requires argument 2, 'INVALID USER ID', to be a valid callback in /home/galava/public_html/core.php on line 474

Link to comment
https://forums.phpfreaks.com/topic/99640-help-w-bbcode/#findComment-509732
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.