Jump to content

Explode loop from mysql


aQ

Recommended Posts

Hi again!

 

I have this value in a table in my database called wardrobe: Socks|Pants|Cap

 

I use explode to cut it into pieces.

explode("|", $wardrobe);

 

Then, I want to print all the pieces from "wardrobe". I do not want to do this manually, because each user has different amount of stuff in his wardrobe. Am I able to create a loop for these?

Example (this doesn't work)

while($wardrobe)
print $wardrobe[$number];
}

 

Thank you for a great forum!

Link to comment
Share on other sites

<?php
$q = mysql_query("SELECT wardrobe FROM table WHERE user = '$username'");

echo "<pre>";

while($row = mysql_fetch_assoc($q)) {
$bits = explode("|", $row["wardrobe"]);
foreach($bits as $item) {
  echo "$item\n";
}
}

echo "<pre>";

?>

Link to comment
Share on other sites

Yes but if there are duplicate rows in the database, more than one will be outputed. So if this is your database:

 

Table: table
+---------+
|wardrobe |
+---------+
|value1   |
|value2   |
+---------+

 

Then both values will be outputted!

Link to comment
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.