The parameters passed through HTML, PHP query access
HTML page to pass data to the PHP page, as a condition parameter query,
database table szd_t; field username, password
I need the query results to be displayed on the HTML page, how do I do it?
$rs->open ("select * from szd_t where username=" $_post["name"], $conn, 1, 1); Is there a problem with this sentence? Other code at least syntax without errors,
The complete code is as follows:
File access.html
<title>Html</title>
File accessdb2.php
$conn = new COM ("ADODB. Connection ");
$connstr = "Driver={microsoft Access DRIVER (*.mdb)}; Dbq= ". Realpath ("Db.mdb");
$conn->open ($CONNSTR);
$rs = new COM ("ADODB. RecordSet ");
$rs->open ("select * from szd_t where username=" $_post["name"], $conn, 1, 1);
while (! $rs->eof)
{
$f = $rs->fields (1);
$f 2 = $rs->fields (0);
Echo $f 2->value;
Echo $f->value;
$rs->movenext ();
}
echo "";
?>
Share to:
------Solution--------------------
Landlord want to know what things ah, their own test if there are errors do not know it.