--- "M. Sokolewicz" <[EMAIL PROTECTED]> wrote:
> I would suggest writing it like this:
............[snip]

I'm getting the page now with the "box" but no values
inside.  Database conn is fine and all.  I can print
out the value , just can't get them to show up inside
form  element (Multiple select)

Here is what I have 
Again, StaIndTypes is made up of CareerIDs [int] and
CareerCategories [varchar]

<?php
mysql_select_db($database_Pmmodel, $Pmmodel);
$inds = mysql_query("SELECT * FROM StaIndTypes",
$Pmmodel) or 
die(mysql_error());
?>

<body>
<form name="form1" id="form1" method="Post" action="">
  <select name="Ind" size="10" multiple="multiple"
id="Ind">
<?php
//I tried MYSQL_ASSOC, NUM and BOTH, no diff
while($row = mysql_fetch_array($inds, MYSQL_BOTH)) {
    echo '<option 
value="'.$inds['CareerIDs'].'">'.$inds['CareerCategories'].'</option>';
}
echo '</select></form>';


Thanks 
Stuart

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to