Hello everybody,
i want to read an entry from a mysql server with this little PHP Script.
$tbl_variousinf_result=mysql_query("SELECT * FROM tbl_variousinf");
while($tbl_variousinf=mysql_fetch_array($tbl_variousinf_result))
{
echo $tbl_variousinf['company'];
}
Now i get the following error message:
Notice: Undefined index: company in u:\selfprog\websites\rr\includes\variousinf.php on line 17
Have anyone an idea?
Thx
KingDave2nd