Jump to content

Digiboy

Recommended Posts

Hi guys, I have a very basic issue, 

 

Im trying to get these results (List all result with coma and delete last coma) like : actor 1, actor 2

 

My total entries are two in mysql but i get first result duplicated and no coma! 

 

This is my code, could you please help me spotting my mistake? 

 

Thank you all

$select_actors=mysql_query("SELECT * FROM actors_in_movies WHERE movie_ref='$movie_ref'");
if (mysql_num_rows($select_actors)>=1) {
while ($row=mysql_fetch_array($select_actors)) {
	
	$actor_ref=$row['actor_ref'];
    $select_actor_name=mysql_query("SELECT * FROM actors WHERE actors_ref='$actor_ref' AND active='1'");
	while ($row_actor=mysql_fetch_array($select_actor_name)) {
	$actor_name.=$row_actor['actors_name'].",";	
		$actor_name = substr(trim($actor_name), 0, -1);
	echo" $actor_name";

	}}}
Link to comment
Share on other sites

You need to take some code out of your loop.
 
For example:

while ( $row_actor = mysql_fetch_array($select_actor_name) )
{
 $actor_name .= $row_actor['actors_name'] . ", ";	
}

$actor_name = substr(trim($actor_name), 0, -1);
echo $actor_name;
Edited by thebo0
Link to comment
Share on other sites

Did that and still get the same result

$select_actors=mysql_query("SELECT * FROM actors_in_movies WHERE movie_ref='$movie_ref'");
if (mysql_num_rows($select_actors)>=1) {
while ($row=mysql_fetch_array($select_actors)) {
	
	$actor_ref=$row['actor_ref'];
    $select_actor_name=mysql_query("SELECT * FROM actors WHERE actors_ref='$actor_ref' AND active='1'");
	while ($row_actor=mysql_fetch_array($select_actor_name)) {
  $actor_name .= $row_actor['actors_name'] . ",";
	}
	$actor_name = substr(trim($actor_name), 0, -1);
    echo " $actor_name";
	
	}
	
	
	}
Link to comment
Share on other sites

Oh in that case you'll need to move those two lines out of the first loop.

$select_actors=mysql_query("SELECT * FROM actors_in_movies WHERE movie_ref='$movie_ref'");
if (mysql_num_rows($select_actors)>=1) {
while ($row=mysql_fetch_array($select_actors)) {
	
	$actor_ref=$row['actor_ref'];
    $select_actor_name=mysql_query("SELECT * FROM actors WHERE actors_ref='$actor_ref' AND active='1'");
	while ($row_actor=mysql_fetch_array($select_actor_name)) {
  $actor_name .= $row_actor['actors_name'] . ",";
	}
	
	}
	
	$actor_name = substr(trim($actor_name), 0, -1);
    echo " $actor_name";

	}
Link to comment
Share on other sites

 

Oh in that case you'll need to move those two lines out of the first loop.

$select_actors=mysql_query("SELECT * FROM actors_in_movies WHERE movie_ref='$movie_ref'");
if (mysql_num_rows($select_actors)>=1) {
while ($row=mysql_fetch_array($select_actors)) {
	
	$actor_ref=$row['actor_ref'];
    $select_actor_name=mysql_query("SELECT * FROM actors WHERE actors_ref='$actor_ref' AND active='1'");
	while ($row_actor=mysql_fetch_array($select_actor_name)) {
  $actor_name .= $row_actor['actors_name'] . ",";
	}
	
	}
	
	$actor_name = substr(trim($actor_name), 0, -1);
    echo " $actor_name";

	}

 

You are an absolute hero dude, well done, worked like a charm

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.