cdoggg94 0 Newbie Poster

I have made a Recordset in Dreamweaver called Brand

with this code:

$product = array($row_Brand['pro_brand']);
$proid = array($row_Brand['pro_id']);

for($x = 0; $x < sizeof($proid); $x++ )
echo $product[$x];

it echos only the first element on the table. I want it to spit of all of them.

any suggestions ?