Intro One Piece is a manga and anime series that follows Monkey D. Luffy, a young boy with a dream to become the greatest pirate in the world ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~the characters~
Nico Robin, Nami, Brook, Sanji, Monkey D. Luffy (front), Jimbei (back), Tony Tony Chopper, Roronoa Zoro, Franky, and Usopp.
If I missed anyone tell me please
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~story~
start however you want it's your story 😁
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~you~
you can be whoever you want to be you can be one of the existing characters or make up your own character add anyone in I don't care
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
😁ENJOY!!!! 😁
im suddenly sanji's daughter whe sanji was flirting with me untik he realized he just flirted with hsi own child💀
Reply
Share
3
*𖤐✮Cool_Bean✮𖤐*
Creator
19/07/2025
wtf
Reply
Share
3
~kuko~
16/08/2025
even tho im a boy
Reply
Share
1
KpOp d3m0n HuNtEr
03/05/2025
.
then why did you assume I was weak?
Zoro: Because you are a girl.
and that means I'm weak?
Reply
Share
4
Tiger queen 👑👑
24/11/2024
This is for u🖕jk don’t take that offensive
Reply
Share
1
KpOp d3m0n HuNtEr
03/05/2025
loved your talkie forgot what it was called tho -your one piece sleepover
Reply
Share
🖤STATIC🖤
13/11/2024
i abused Zoro for grabbing me and the crew stood there,i also bent sanji's arm the wrong way😶
Reply
Share
8
KpOp d3m0n HuNtEr
03/05/2025
oh I flushed usopp down the toilet for walking in on me while I was on the toilet
Reply
Share
4
View 6 Replies
The Beyond Bats
25/04/2025
WTF IS THIS ☠️
Here's a PHP function that generates a unique 12-character code following your specified format and checks for uniqueness in a MySQL database:
```php
function generateUniqueCode($conn) {
do {
// Generate code parts
$letters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
// Generate letter sections
$letterPart1 = substr(str_shuffle($letters), 0, 3);
$letterPart2 = substr(str_shuffle($letters), 0, 3);
// Generate number sections with leading zeros
$numberPart1 = str_pad(mt_rand(0, 999), 3, '0', STR_PAD_LEFT);
$numberPart2 = str_pad(mt_rand(0, 999), 3, '0', STR_PAD_LEFT);
// Combine parts
$code = $letterPart1 . $numberPart1 . $letterPart2 . $numberPart2;
// Check database for existing code
$stmt = $conn->prepare("SELECT code FROM codes WHERE code = ?");
$stmt->bind_param("s", $code);
$stmt->execute();
$result = $stmt->get_result();
$exists = $result->num_rows > 0;
$stmt->close();
} while ($exists);
return $code;
}
```
**Key features:**
1. Generates code in `LLLNNNLLLNNN` format (3 letters, 3 numbers, 3 letters, 3 numbers)
2. Uses secure random generation with `mt_rand()` and `str_shuffle()`
3. Ensures number sections always have 3 digits with leading zeros
4. Checks for existing codes in the database using prepared statements
5. Guarantees unique code through a loop until a non-existing code is found
**Usage:**
```php
// Database connection (example using MySQLi)
$conn = new mysqli("host", "username", "password", "database");
// Generate unique code
$uniqueCode = generateUniqueCode($conn);
// Use the generated code
echo "Generated Code: " . $uniqueCode;
```
**Required database structure:**
```sql
CREATE TABLE codes (
code VARCHAR(12) PRIMARY KEY
);
```
**Notes:**
- The code uses MySQLi prepared statements to prevent SQL injection
- The loop will continue generating codes until a unique one is found
- The function assumes a valid MySQLi connection is passed as a parameter
- Character generation uses cryptographically safe methods suitable for most applications
- The probability of collision is extremely low (1 in 308 trillion possible combinations)
Comments
35jar jar gungan
16/09/2025
Talkior-PeO7ygtc
15/09/2025
♡kilua's wifey♡
01/08/2025
~kuko~
19/07/2025
*𖤐✮Cool_Bean✮𖤐*
Creator
19/07/2025
~kuko~
16/08/2025
KpOp d3m0n HuNtEr
03/05/2025
then why did you assume I was weak?
Zoro: Because you are a girl.
and that means I'm weak?
From the memory
8 Memories
Tiger queen 👑👑
24/11/2024
KpOp d3m0n HuNtEr
03/05/2025
🖤STATIC🖤
13/11/2024
KpOp d3m0n HuNtEr
03/05/2025
The Beyond Bats
25/04/2025
Here's a PHP function that generates a unique 12-character code following your specified format and checks for uniqueness in a MySQL database: ```php function generateUniqueCode($conn) { do { // Generate code parts $letters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'; // Generate letter sections $letterPart1 = substr(str_shuffle($letters), 0, 3); $letterPart2 = substr(str_shuffle($letters), 0, 3); // Generate number sections with leading zeros $numberPart1 = str_pad(mt_rand(0, 999), 3, '0', STR_PAD_LEFT); $numberPart2 = str_pad(mt_rand(0, 999), 3, '0', STR_PAD_LEFT); // Combine parts $code = $letterPart1 . $numberPart1 . $letterPart2 . $numberPart2; // Check database for existing code $stmt = $conn->prepare("SELECT code FROM codes WHERE code = ?"); $stmt->bind_param("s", $code); $stmt->execute(); $result = $stmt->get_result(); $exists = $result->num_rows > 0; $stmt->close(); } while ($exists); return $code; } ``` **Key features:** 1. Generates code in `LLLNNNLLLNNN` format (3 letters, 3 numbers, 3 letters, 3 numbers) 2. Uses secure random generation with `mt_rand()` and `str_shuffle()` 3. Ensures number sections always have 3 digits with leading zeros 4. Checks for existing codes in the database using prepared statements 5. Guarantees unique code through a loop until a non-existing code is found **Usage:** ```php // Database connection (example using MySQLi) $conn = new mysqli("host", "username", "password", "database"); // Generate unique code $uniqueCode = generateUniqueCode($conn); // Use the generated code echo "Generated Code: " . $uniqueCode; ``` **Required database structure:** ```sql CREATE TABLE codes ( code VARCHAR(12) PRIMARY KEY ); ``` **Notes:** - The code uses MySQLi prepared statements to prevent SQL injection - The loop will continue generating codes until a unique one is found - The function assumes a valid MySQLi connection is passed as a parameter - Character generation uses cryptographically safe methods suitable for most applications - The probability of collision is extremely low (1 in 308 trillion possible combinations)
From the memory
1 Memories
*𖤐✮Cool_Bean✮𖤐*
Creator
25/04/2025
charm rosie
28/04/2025
KpOp d3m0n HuNtEr
03/05/2025
KpOp d3m0n HuNtEr
03/05/2025
*"(start however you want)"*
*I'm in the bathroom*
*Usopp walks in*
From the memory
5 Memories
Talkior-aINQ8s8a
13/04/2025