I used this code to display data from MS Access DB:
$conn = odbc_connect('eng1','said','fox');
$sqls ="select * from mati";
$dot = odbc_exec($conn, $sqls);
while($res = odbc_fetch_row($dot))
{
echo(odbc_result($dot,"matname")."<br>");
}
and it works so well, But
Now I want to insert or Update, so How can I do this?
Note: of course the SQL satatement of insert or update. I only need to know the way of coding PHP to do this. :rolleyes: