[PHP-DB] Re: problem with php oracle on linux

2005-06-16 Thread PHP - NEWS
TEST your connection : if ($c=OCILogon(user, password, db)) { echo Successfully connected to Oracle.\n; } else { $err = OCIError(); echo Oracle Connect Error . $err[text]; } if you have an error try to add other putenv() as : putenv(ORACLE_BASE=/home/oracle);

[PHP-DB] [PHP] ORA-28582: direct connection not allow

2005-06-16 Thread PHP - NEWS
I test my script PHP on Debian(sarge) Oracle9.0.2 , and a mandrake Oracle 9.0.2 . On Mandrake all is OK, but on Debian, i have this message : ORA-28582: a direct connection to this agent is not allowed I search on Google, faqoracle, oracle.com, without finding any answers or way of

[PHP-DB] registration form with activation code sent to user

2005-06-16 Thread babu
Hi , I have seen many forums, where the user can register and a message will be displayed that the user will get an activation code through email, by which he can complete his registration. How this can be done using php.I am eager to know. Thanks.

RE: [PHP-DB] registration form with activation code sent to user

2005-06-16 Thread Bastien Koert
Since you couldn't google for it...here is the link http://www.zend.com/zend/tut/tutorial-mehmet1.php Bastien From: babu [EMAIL PROTECTED] To: php-db@lists.php.net Subject: [PHP-DB] registration form with activation code sent to user Date: Thu, 16 Jun 2005 14:18:02 +0100 (BST) Hi , I have

Re: [PHP-DB] registration form with activation code sent to user

2005-06-16 Thread Joseph Crawford
i dont think a capcha is what they are looking for, rather a way to create a md5 or something that they can email a link to users to a page such as confirm.php?validate=MD5-HERE so that they can validate thier email. Steps to do this 1.) Create the string maybe an MD5 based on the email they

Re: [PHP-DB] registration form with activation code sent to user

2005-06-16 Thread babu
Ya joseph u r right, i am thinking of the url to be generated to be send to the user. I followed u r steps but did not understand some points. 2.) Store that string to the database somewhere where to store in database, i mean when the user clicks the activation code how to check the

Re: [PHP-DB] Security and MYSQL databases

2005-06-16 Thread Paul R. Strong
Here's a few payment processors. Some of them are located in United States and others in United Kingdom. Haven't tried all of them personally, but many professionals have recommended them. PayPal is still the best way to go because of its low cost. VeriSign is probably the most secure of all

Re: [PHP-DB] registration form with activation code sent to user

2005-06-16 Thread Joseph Crawford
#2 Well when the user registers there will have to be a database table for members i assume, why not make a column confirmation or something and store this string there? #3 Check into the mail() function, this will allow you to send custom headers etc.. You just create the body of the message

[PHP-DB] xml parsing

2005-06-16 Thread Wendell Frohwein
Hello everyone. I got this script that sends XML data to United Parcel Service (UPS) to receive rates. XML data is sent to the server, and a response is sent back also in XML. The problem is the parser, the data gets fed into it by url only, and I would like to feed data to it via a variable that

[PHP-DB] General UPDATE question

2005-06-16 Thread Ron Piggott
Does the UPDATE command only change one row or each occurance if the the criteria repeat itself through the table? -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php