[PHP-DB] Oracle oci8

2003-04-05 Thread Paul Dymecki
Hello, I'm sure this question has been asked, but i was wondering if anyone has successfully gotten oci8 working with php on windows? I've been trying for quite awhile with no success. thanks for any help, Paul _ Protect your

[PHP-DB] mysl_connect question

2003-04-05 Thread [EMAIL PROTECTED]
When I use myssql to connect to a db with anything besides root I get an error that I cannot connect. I created a user that has access to one databse called 'menu'. The user has SELECT, UPDATE, and DELETE permissions for that database. I can connect on the command line: mysql-u newuser -p. But

Re: [PHP-DB] mysl_connect question

2003-04-05 Thread Larry E. Ullman
First, please don't cross-post. The PHP-DB list is the proper one for this question. If you can connect via the mysql monitor but not with PHP, I expect the problem has to do with your host. Larry -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit:

RE: [PHP-DB] mysl_connect question

2003-04-05 Thread John W. Holmes
When I use myssql to connect to a db with anything besides root I get an error that I cannot connect. I created a user that has access to one databse called 'menu'. The user has SELECT, UPDATE, and DELETE permissions for that database. I can connect on the command line: mysql-u newuser -p.

[PHP-DB] Right-click

2003-04-05 Thread Alexa Kirk
Does anyone know if there is a function in PHP that allows you to right-click on an item, and from there a drop down menu pops up and you can go to another screen, preserving that value that was clicked on? If there is no function for right-clicking, then is there a way that when you are

Re: [PHP-DB] Right-click

2003-04-05 Thread Larry E. Ullman
First, this should probably be sent to the PHP general mailing list, not the PHP-DB one. Does anyone know if there is a function in PHP that allows you to right-click on an item, and from there a drop down menu pops up and you can go to another screen, preserving that value that was clicked on?

[PHP-DB] Prefix question

2003-04-05 Thread Sparky Kopetzky
Does anyone know of a prefix convention used for PHP? What I'm talking about is using a type of Hungarian notation for PHP variables. I know they use 'g', 'm', and 'r' for global, method and reference variables but for other variable types. I get confused once and a while, while I am coding and

Re: [PHP-DB] HELP HELP HELP SELECT not work

2003-04-05 Thread Leif K-Brooks
My psychic powers are a bit out of tune, but I think the problem is on line 35 of your code. [EMAIL PROTECTED] wrote: My PHP scripts don't execute the SELECT queries after execute the first. My web execute PHP scripts for work with MYSQL, all on Apache webserver. PHP version: 4.1.2 MySQL

[PHP-DB] Re: [PHP] mysl_connect question

2003-04-05 Thread [EMAIL PROTECTED]
Thanks for you help! First I tried flush privileges and I have tried to reboot mysql. I am running into a problem if I use user @localhost or @mysite.com. I have tried setting up the user with both those domains inside both mysql.User and mysql.db. I have used [EMAIL PROTECTED] or [EMAIL

Re: [PHP-DB] Re: [PHP] mysl_connect question

2003-04-05 Thread Doug Thompson
The access denied message you are seeing is usually the result of either an incorrect password or username, but you don't give enough information to allow guessing beyond that. Are you certain your script is submitting the expected values? Doug On Sat, 05 Apr 2003 21:54:33 -0600, [EMAIL

[PHP-DB] Updating and deleting

2003-04-05 Thread Rick Dahl
Why won't this work? html titleEdit Show List/title body ?php $db = mysql_connect(localhost, root); mysql_select_db(websitedb,$db); if($sent) { $sql = UPDATE bp set sent=$sent where fname=$fname AND lname=$lname; mysql_query($sql); ? Sentbra

[PHP-DB] RE: mysl_connect question

2003-04-05 Thread Dave Carrera
Did you MysqlFLUSH PRIVILEGES; ? http://www.ephgroup.com Secure Hosting Accounts for everyone. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 05 April 2003 19:42 To: [EMAIL PROTECTED] Subject: mysl_connect question When I use myssql to connect to a db

RE: [PHP-DB] Updating and deleting

2003-04-05 Thread John W. Holmes
Why won't this work? Because you didn't tell us what the problem was. ---John Holmes... html titleEdit Show List/title body ?php $db = mysql_connect(localhost, root); mysql_select_db(websitedb,$db); if($sent) { $sql = UPDATE bp set sent=$sent where fname=$fname AND

RE: [PHP-DB] Re: [PHP] mysl_connect question

2003-04-05 Thread John W. Holmes
This is getting way off topic for the PHP list... What was the GRANT command you used to create this new user? When you issue the command the [EMAIL PROTECTED] part should match what you're getting in the error message. So if you granted permission for [EMAIL PROTECTED], then it's not going to