|
|
|
|
||||||
![]() |
|
|
LinkBack | Outils de la discussion |
|
|
#1 |
|
Messages: n/a
Hébergeur: |
hello i m new to php
i m working on project that has interface with simple html and php i m thinking to use i got some problem with the connecting to DB here is the code for connecting db $db = "Snmp_Dba"; // $connection_id = odbc_connect_custom($db); $db_connection = odbc_connect("DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=$db", "ADODB.Connection", "", "SQL_CUR_USE_ODBC"); // $query = "SELECT * FROM System_Master"; //$result_id = odbc_exec($connection_id,$query); $result = odbc_tables($db_connection); while (odbc_fetch_row($result)) { if(odbc_result($result,"TABLE_TYPE")=="TABLE") { echo "<br />" . odbc_result($result,"TABLE_NAME"); ?> by doing this i got error in ie as follows Parse error: parse error in c:\program files\easyphp1-8\www\search.php on line 25 any body me to slove this problem Thanks Vijay |
|
|
|
#2 |
|
Messages: n/a
Hébergeur: |
BigZero wrote:
> hello i m new to php > i m working on project that has interface with simple html and php i m > thinking to use > i got some problem with the connecting to DB here is the code for > connecting db > > > > $db = "Snmp_Dba"; > // $connection_id = odbc_connect_custom($db); > $db_connection = odbc_connect("DRIVER={Microsoft Access Driver > (*.mdb)}; DBQ=$db", "ADODB.Connection", "", "SQL_CUR_USE_ODBC"); > // $query = "SELECT * FROM System_Master"; > //$result_id = odbc_exec($connection_id,$query); > $result = odbc_tables($db_connection); > while (odbc_fetch_row($result)) { > if(odbc_result($result,"TABLE_TYPE")=="TABLE") { > echo "<br />" . odbc_result($result,"TABLE_NAME"); > ?> > > > by doing this i got error in ie as follows > > Parse error: parse error in c:\program files\easyphp1-8\www\search.php > on line 25 > > any body me to slove this problem > > Thanks > Vijay > Which is line 25? -- ================== Remove the "x" from my email address Jerry Stuckle JDS Computer Training Corp. jstucklex@attglobal.net ================== |
|
|
|
#3 |
|
Messages: n/a
Hébergeur: |
On Apr 26, 7:05am, BigZero <vijaymajagaon...@gmail.com> wrote:
> hello i m new to php > i m working on project that has interface with simple html and php i m > thinking to use > i got some problem with the connecting to DB here is the code for > connecting db > > $db = "Snmp_Dba"; > // $connection_id = odbc_connect_custom($db); > $db_connection = odbc_connect("DRIVER={Microsoft Access Driver > (*.mdb)}; DBQ=$db", "ADODB.Connection", "", "SQL_CUR_USE_ODBC"); > // $query = "SELECT * FROM System_Master"; > //$result_id = odbc_exec($connection_id,$query); > $result = odbc_tables($db_connection); > while (odbc_fetch_row($result)) { > if(odbc_result($result,"TABLE_TYPE")=="TABLE") { > echo "<br />" . odbc_result($result,"TABLE_NAME"); > ?> > > by doing this i got error in ie as follows > > Parse error: parse error in c:\program files\easyphp1-8\www\search.php > on line 25 > > any body me to slove this problem > > Thanks > Vijay I think this $db_connection = odbc_connect("DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=$db", "ADODB.Connection", "", "SQL_CUR_USE_ODBC"); needs to be this $db_connection = odbc_connect("DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=" . $db, "ADODB.Connection", "", "SQL_CUR_USE_ODBC"); |
|
|
|
#4 |
|
Messages: n/a
Hébergeur: |
Thanks
i got solution for that, i chabged UserDsn to SystemDSN setting in control panel and all did change in code is $con = odbc_connect('MSAccessDriver','',''); any way thanks Regards Vijay |
|
![]() |
| Outils de la discussion | |
|
|