Hi,

can i do this?

$num_vals = array ();
for ($i=0; $i<10; $i++)
{
  $shot_count = "SELECT COUNT(*) FROM statistik WHERE
shooter='$shooter_login' && shot_one = '$i' || shooter='$shooter_login' &&
shot_two = '$i' || shooter='$shooter_login' && shot_three = '$i' ||
shooter='$shooter_login' && shot_four = '$i' || shooter='$shooter_login' &&
shot_five = '$i'";
  $result = mysql_query($shot_count);
  $num_vals[$i] = mysql_fetch_array($result);
}

I guess it´s the last row that is troubling - getting an array into an
array. If the code is good - how do i echo the results?

# Daniel Alsén    | www.mindbash.com #
# [EMAIL PROTECTED]  | +46 704 86 14 92 #
# ICQ: 63006462   | +46 8 694 82 22  #
# PGP: http://www.mindbash.com/pgp/  #


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to