Hi
I need to retrieve results from a database inside a select box AND it need to be more than one columns value in one single row,
But i need to format so that all the lines retrieved can be showed aligned just like a table with four cells could be showed, one cell just below the other in the same "x" position
So i need all the streets from the city i have choosen before plus the zip code neighborhood and descrition, inside a select box just like in the code below:
echo "<OPTION VALUE=0>Choose a State";
$RowCount = 0;
while($RowCount < count($distinct_states))
{
echo "<OPTION VALUE=\"";
echo $distinct_streets[$RowCount];
echo "\">";
echo $distinct_zip_code[$RowCount];
echo " | ";
echo $distinct_neighborhood[$RowCount];
echo " | ";
echo $distinct_description[$RowCount];
echo " | ";
echo "\n";
$RowCount++;
}
echo "</SELECT>\n";
If you know a way todo this please tell me