I've been searching all internet but could not find a single solution.
I'm connecting an Access database and getting information there.
The code's like:
$conn->Open("DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=$db");
$sql = 'SELECT FirstName, LastName
FROM testdeneme';
$rs = $conn->Execute($sql);
and statements like
$rs->Fields['FirstName']->Value
used in the code.
I searched but couldn't find.
Where can I find an object's functions(or whatever is called) like $rs's Fields,Value
and things like that.
Also I need to send a query within the page and get a reply from that query and use it in the page. How can I do this?
Please help with these questions!
Thanks!