hi, i am using the following code
$db = mysql_connect("localhost", "xxx", "xxxxxxx");
mysql_select_db("acctest",$db);
$result = mysql_query("SELECT * FROM testtable",$db);
while ($myrow = mysql_fetch_row($result))
{
$premium = myrow[3];
}
but..... the $permium variable is never assigned??? its a double in my database, is this a problem? if ya can help please let me know, and points to tutorials about it would be great if ya dont know any answer......
many thanks in advance.......