Sponsored Content
Full Discussion: Wanna change my username
Contact Us Post Here to Contact Site Administrators and Moderators Wanna change my username Post 302720295 by Scott on Tuesday 23rd of October 2012 05:18:56 PM
Old 10-23-2012
 

9 More Discussions You Might Find Interesting

1. Post Here to Contact Site Administrators and Moderators

What to change my username

I want to change my username how can I (1 Reply)
Discussion started by: alnita
1 Replies

2. Post Here to Contact Site Administrators and Moderators

Username change

Hello Moderator, My login name is govindts. I wanted to rename this login id to shrinika Would you be able to do this? Thanks (1 Reply)
Discussion started by: govindts
1 Replies

3. Post Here to Contact Site Administrators and Moderators

Change Username

Hello, I'd like to change my username if possible. The reason is that it is my actual name, and I'd like to remove it from search engines. If it is possible, I'd like to change it to creeps. Thanks in advance! (1 Reply)
Discussion started by: cezar.elnazli
1 Replies

4. Post Here to Contact Site Administrators and Moderators

Change username

Hi.. I want to change my username, is there any way by which I can do it? Thanks in advance.. (3 Replies)
Discussion started by: laxmi Sharma
3 Replies

5. Emergency UNIX and Linux Support

Change username in XSCF

Hi All, I have SPARC T4-4 connected with XSCF console. By mistake console user name is set to "root" instead of "sunadmin" (This is what we keep as standard). How can I change it ? Please help me -> show /SP/users/root /SP/users/root Targets: ssh Properties: role... (1 Reply)
Discussion started by: solaris_1977
1 Replies

6. Post Here to Contact Site Administrators and Moderators

Is it possible to change my username?

I know username is the unique id for my unix_dot_com account, but is it possible change it ? should i raise any special request to moderators ? (2 Replies)
Discussion started by: Arun_Linux
2 Replies

7. Post Here to Contact Site Administrators and Moderators

How to change my username?

Moderators, I want to change my username. I tried but unable to find a way to do that. Can you please assist? Thanks & Regards Abedi (1 Reply)
Discussion started by: katherine2008
1 Replies

8. Post Here to Contact Site Administrators and Moderators

Change of username

Hi, I'd like to change my username..... is there a mechanism to do this or can you do it? (1 Reply)
Discussion started by: Martincorneuk
1 Replies

9. Post Here to Contact Site Administrators and Moderators

Do I need to change my Username/PW?

After mis-typing my password once, I logged in. And after the "welcome Clovis_Sangrail" message displayed for a little less than a second, the display changed to a screen to recover my username and/or my password (it prompted for an email address). Clearly, I don't need to do that. Maybe... (1 Reply)
Discussion started by: Clovis_Sangrail
1 Replies
BBCODE_CREATE(3)							 1							  BBCODE_CREATE(3)

bbcode_create - Create a BBCode Resource

SYNOPSIS
resource bbcode_create ([array $bbcode_initial_tags = NULL]) DESCRIPTION
This function returns a new BBCode Resource used to parse BBCode strings. PARAMETERS
o $bbcode_initial_tags - An associative array containing the tag names as keys and parameters required to correctly parse BBCode as their value. The fol- lowing key/value pairs are supported: o$flags optional - a flag set based on the BBCODE_FLAGS_* constants. o$type required - an int indicating the type of tag. Use the BBCODE_TYPE_* constants. o$open_tag required - the HTML replacement string for the open tag. o$close_tag required - the HTML replacement string for the close tag. o$default_arg optional - use this value as the default argument if none is provided and tag_type is of type OPTARG. o$content_handling optional - Gives the callback used for modification of the content. Object Oriented Notation supported only since 0.10.1 callback prototype is string name (string $content, string $argument) o$param_handling optional - Gives the callback used for modification of the argument. Object Oriented Notation supported only since 0.10.1 callback prototype is string name (string $content, string $argument) o$childs optional - List of accepted children for the tag. The format of the list is a comma separated string. If the list starts with ! it will be the list of rejected children for the tag. o$parent optional - List of accepted parents for the tag. The format of the list is a comma separated string. RETURN VALUES
Returns a BBCode_Container EXAMPLES
Example #1 bbcode_create(3) example <?php $arrayBBCode=array( ''=> array('type'=>BBCODE_TYPE_ROOT, 'childs'=>'!i'), 'i'=> array('type'=>BBCODE_TYPE_NOARG, 'open_tag'=>'<i>', 'close_tag'=>'</i>', 'childs'=>'b'), 'url'=> array('type'=>BBCODE_TYPE_OPTARG, 'open_tag'=>'<a href="{PARAM}">', 'close_tag'=>'</a>', 'default_arg'=>'{CONTENT}', 'childs'=>'b,i'), 'img'=> array('type'=>BBCODE_TYPE_NOARG, 'open_tag'=>'<img src="', 'close_tag'=>'" />', 'childs'=>''), 'b'=> array('type'=>BBCODE_TYPE_NOARG, 'open_tag'=>'<b>', 'close_tag'=>'</b>'), ); $text=<<<EOF [b]Bold Text[/b] [i]Italic Text[/i] [url]http://www.php.net/[/url] [url=http://pecl.php.net/][b]Content Text[/b][/url] [img]http://static.php.net/www.php.net/images/php.gif[/img] [url=http://www.php.net/] [img]http://static.php.net/www.php.net/images/php.gif[/img] [/url] EOF; $BBHandler=bbcode_create($arrayBBCode); echo bbcode_parse($BBHandler,$text); ?> The above example will output: <b>Bold Text</b> [i]Italic Text[/i] <a href="http://www.php.net/">http://www.php.net/</a> <a href="http://pecl.php.net/"><b>Content Text</b></a> <img src="http://static.php.net/www.php.net/images/php.gif" /> <a href="http://www.php.net/"> [img]http://static.php.net/www.php.net/images/php.gif[/img] </a> PHP Documentation Group BBCODE_CREATE(3)
All times are GMT -4. The time now is 07:31 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy