[PHP-DB] Create Table with AutoIncrement-field in M$ AccessDB

2002-10-22 Thread Jaap Aikema
I try to make a new table using PHP4 & M$ Access (via ADODB). This is the code I use: //begin DB-connection to create table $db_connection = new COM("ADODB.Connection"); $db_connstr = "driver={Microsoft Access Driver (*.mdb)}; DBQ=". realpath("database.mdb") ." ;DefaultDir=". realpath(""); $db_co

Re: [PHP-DB] Create Table with AutoIncrement-field in M$ AccessDB

2002-10-22 Thread Ignatius Reilly
What is your problem exactly? Ignatius - Original Message - From: "Jaap Aikema" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, October 22, 2002 11:58 AM Subject: [PHP-DB] Create Table with AutoIncrement-field in M$ AccessDB > I tr

[PHP-DB] Security

2002-10-22 Thread Doaldo Navai Junior
I need RSA cryptography (or another assymetric method) to crypt the data in my db. How can I do it? Doaldo [EMAIL PROTECTED] -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DB] Output Errors 2

2002-10-22 Thread David Robley
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] says... > Unless it is a typo, the line that reads: > > if (image == 'NULL') { echo ''; } > > should read: > > if ($image == 'NULL') { echo ''; } > ^ > > You forgot the $ in front of image. > > HTH > > MB > [EMAIL PROTECTED] said: > > >