Hi guys, im new to this forums and im unable to find information about how to use this function
//** Insert a record into another table ****
global $conn;
$strSQLInsert = "insert into records (Agent, Week) values (Name, WeekYear)";
db_exec($strSQLInsert,$conn);
How do i exactly read the values i just entered in the form? I want to write the value of Name and WeekYear in the table records on the fields Agent and Week
Thanks