I reviewed a few manuals and I can now query a database no problems.
One specific thing I needed and can´t seem to find it how is:
I´d like to have a <select> in a form that its <option values> where retrieved from a query.
I´m making the query I want, ir returns the values ok (I see it in mysql browser) but I can´t pass it to php code correctly, this is the example:
"....
while ($row = mysql_fetch_array($qcolectividade,MYSQL_ASSOC)) {
print "<option value=".$row{'Colectividade'}.">"."$row{'Colectividade'}"."</option>";
....
"
I always get parsing errors!!! Quite sure it´s because the "", what´s the correct way to do this, please?
Thanks,
RR