Jump to content

thebo0

Members
  • Posts

    3
  • Joined

  • Last visited

Everything posted by thebo0

  1. 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"; }
  2. You'll either have to use JavaScript or send users to the destination URL via your own URL. For example "/link.php?url=www.google.co.uk" - then you can set a cookie in "link.php" and forward them on.
  3. 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;
×
×
  • 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.