Hi All
I got a problem for my code i don’t know how to solve it. can give me some code
here is my code
Company Name | Phone Number | Country | SIC Code | PC Size | Server Size | Revenue | Employee Size |
while($row=mysql_fetch_array($result))
{
if($bgcolor=='#c7cff0'){$bgcolor='#ffffff';}
else{$bgcolor='#c7cff0';}
echo"<tr>";
echo"<td><input type='checkbox' name='myform[]' value= ".$row['coy_id']."></td>";
echo"<td>".$row['CompanyName']."</td>";
echo"<td>".$row['IDD']."".$row['MainLine']."</td>";
echo"<td>".$row['Country']."</td>";
echo"<td>".$row['Sic_Code']."</td>";
echo"<td>".$row['PCNumber']."</td>";
echo"<td>".$row['ServerNumber']."</td>";
echo"<td >".$row['Revenue_USD']."</td>";
echo"<td>".$row['Employees']."</td>";
echo"</tr>";
}
?>
Thank you!
MrBean