Jump to content

separate tag


ohdang888

Recommended Posts

$qry = "SELECT `tags` FROM `your_table`";
$qry = mysl_query($qry);

if (mysql_num_rows($qry) > 0)
{
$vars = array();
while($row = mysql_fetch_assoc($qry))
{
 $vars[] = $row['tags'];
}
$vars = array_unique($vars);
extract($vars,EXTR_PREFIX_ALL, 'var');
$number = count($vars);
for($i=0;$i<$number;$i++)
{
$temp = "var$i";  
echo $$temp;
}
}

 

something like that shoudl do the trick...

Link to comment
Share on other sites

didn't work. (i found the errors, but it still didn;t work)

thanks though  ;D

 

MadTechie:

I think i will need to do the second one, but one thing...

 

All this info in is under 1 column and there is anywhere between 0 and 10 tags in it. So the list() won't work... (i think ???)

 

So i'm really confused on this, how can i put these on in array or set?

 

Thanks for helping..

Link to comment
Share on other sites

using ToonMariner  code

<?php
$qry = "SELECT `tags` FROM `your_table`";
$qry = mysl_query($qry);

if (mysql_num_rows($qry) > 0)
{
$vars = array();
$i=1;
while($row = mysql_fetch_assoc($qry))
{
  $vars["var$i"] = $row['tags'];
$i++;
}
//debug
echo "heres the array<br><pre>";
print_r($vars);

//create variables
extract($vars);

echo "$var1 <br>";
echo "$var2 <br>";
echo "$var3 <br>";
echo "$var4 <br>";
//etc
?>

Link to comment
Share on other sites

try

<?php
$tags = 'car, motor, automobile, gas, drive, road';
$tags = explode(',', $tags);
$num = count($tags);
$i = 0;
while ($i < $num){
$name = 'var'.($i + 1);
$$name = trim($tags[$i++]);
}
echo $var3;
?>

Link to comment
Share on other sites

really alll you need to do is set the $varable names to what you want really

this is a flash way lol.

 

you mean this

 

re edted sorry.........

<?php

$tags = 'car, motor, automobile, gas, drive, road';

$tags = explode(',', $tags);

//set within the varable names

$car="redarrow";

for($i=0; $i<count($tags); $i++){

    $res[]=trim($tags[$i]);
    }
    
foreach($res as $x){

      echo " All set varables are: $$x<br>";
      
}

     echo "car is now: $car";
?>

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.