Jump to content

Set multiple rows to a single $variable


mrt003003

Recommended Posts

Hi there im trying to set a single variable multiple rows of data that are echoed using a single variable. The trouble is i just cant seem to make it work by trying to add a while or do loop..

 

The variable is $alderaanfleetalt  and consists of:

 

$fleetname = "FleetName";
$shipname = "Ship Name";

 

Which is just text stored in two other variables. The select query row of data is added the $alderaanfleetalt variable.

 

$alderaanfleetalt =  $fleetname." ".$row_Alderaanfleet['FleetName']."</br>".$shipname." ".$row_Alderaanfleet['ShipName']; 

 

At the moment only a single row appears. ive tried to add a while/do loop so that multiple rows are outputted but its not working.

 

do{ 
$alderaanfleetalt =  $fleetname." ".$row_Alderaanfleet['FleetName']."</br>".$shipname." ".$row_Alderaanfleet['ShipName'];
} while ($row_Alderaanfleet = mysql_fetch_assoc($Alderaanfleet)); 

 

Im a bit lost here and not even sure it can be done this way... Any help would be ace.

 

Thank you :)

 

 

Link to comment
Share on other sites

You only have 1 row because you overwrite the value of $alderaanfleetalt in every iteration of the loop. You may want to concatenate instead of overwriting

 

$alderaanfleetalt = "";//set it to empty string
do{ 
$alderaanfleetalt .=  $fleetname." ".$row_Alderaanfleet['FleetName']."</br>".$shipname." ".$row_Alderaanfleet['ShipName'];//concatenate each row onto the whole variable
} while ($row_Alderaanfleet = mysql_fetch_assoc($Alderaanfleet)); 

Link to comment
Share on other sites

Make an array of rows to loop through later:

while ($row_Alderaanfleet = mysql_fetch_assoc($Alderaanfleet)) { 
   $alderaanfleetalt[] =  $fleetname." ".$row_Alderaanfleet['FleetName']."<br />".$shipname." ".$row_Alderaanfleet['ShipName'];
}

 

Or concatenate with a newline or break or whatever:

 $alderaanfleetalt = "";
while ($row_Alderaanfleet = mysql_fetch_assoc($Alderaanfleet)) { 
   $alderaanfleetalt .=  $fleetname." ".$row_Alderaanfleet['FleetName']."<br />".$shipname." ".$row_Alderaanfleet['ShipName']."<br />\n";
}

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.