[PHP-DB] LDAP connexions

2003-09-16 Thread BENARD Jean-philippe
Hi! I need some information about php LDAP capabilities. I'm interested in managing LDAP connexions as ora_plogon manage the ORACLE ones. Theses connexions are used in order to manipulate the database (not only for authentications). We must be sure that there are too many connexions created and

[PHP-DB] Email Form

2003-09-16 Thread Philip O'Rourke
I am new to PHP and need some help with an form mail problem. Basically i know how to get a form to submit data to MySQL and I know how email the content of a form. But how do i get a form to do both? -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit:

RE: [PHP-DB] Email Form

2003-09-16 Thread Jacob A. van Zanen
Hi, Combine the two scripts Begin script Accept the post variables Insert them into the database Mail them End script jack -Original Message- From: Philip O'Rourke [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 16, 2003 10:46 AM To: [EMAIL PROTECTED] Subject: [PHP-DB] Email

[PHP-DB] Unsuscribe

2003-09-16 Thread Dragos Gafita

Re: [PHP-DB] Need to Run a PHP script using CRON or ?

2003-09-16 Thread Martin Marques
El Lun 15 Sep 2003 17:47, Jonathan Villa escribió: I believe this would need php to installed as a cgi, which I prefer not to do... If you don't want to because of security resons, please install it and don't leave it in the hands of the web server. If you don't want to go through the problem

Re: [PHP-DB] Email Form

2003-09-16 Thread Philip O'Rourke
Hi Jcck, here is an example of how I'm connecting to the database to complete a registration process. What I'm trying to get at is where to insert the relevant email code. ?php require_once('../Connections/casu.php'); ??php session_start(); function GetSQLValueString($theValue, $theType,

Re: [PHP-DB] Email Form

2003-09-16 Thread Philip O'Rourke
My Last post seems to have generated some sort of spam alert, so I'll attach the file. Jacob A. Van Zanen [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi, Combine the two scripts Begin script Accept the post variables Insert them into the database Mail them End script

[PHP-DB] Re: [PHP] MS-SQL 2000 weird problem

2003-09-16 Thread Martin Greco
Solved the problem I changed the locales.conf file from freetds/etc I had spanish, i changed to us_english. I would like to use it in spanish cause when you use some spanish characters the application crashes. I don't know any other way to do it. [default] date format = %b %d %Y %I:%M%p

[PHP-DB] Help connecting with oracle

2003-09-16 Thread Barreira, Sergio
Hi: I have a Oracle 7.3.3 on Unix, but in my computer (client) Windows 2000 i have a php source code that try to connect with this database. I test with TNSPING and SQLPLUS commands line, and connect with both susseffuly, but when i try to connect with php can't. I have a

[PHP-DB] Help connecting with oracle Works Fine!

2003-09-16 Thread Barreira, Sergio
Tank you but i copy the .DLLs from c:\orant\bin to c:\winnt\system32 without overwriting and works fine!! bye folks. -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DB] ADO Connection Problems

2003-09-16 Thread Joe Mack
I am having problems making things happen in a Microsoft Access Database that I am connecting to through an ADO Connection using PHP. I know a little bit about PHP and how to code, but this is the first time I have played around with the ADO Connection and Command objects. I am getting no error

[PHP-DB] Saving state

2003-09-16 Thread Shiloh Madsen
Sorry about the cross posting, as im not exactly sure what would be the best method to handle this, but im trying to set up a web application with a tabbed interface. Each tab will have a form to enter data, and the requisite save and continue button. Heres where things get hard though. I want

Re: [PHP-DB] Saving state

2003-09-16 Thread Luke Skywalker
Sounds fairly complicated, but wat about storing the information in session variables? and using multi dimensional arrays to store the information eg Array ( [call_1] = Array ( [name] = john smith [number] = 555-555-555 [time] = 2003-10-17 10:41:00

RE: [PHP-DB] Saving state

2003-09-16 Thread Duane Lakoduk
From: Shiloh Madsen [mailto:[EMAIL PROTECTED] Sorry about the cross posting, as im not exactly sure what would be the best method to handle this, but im trying to set up a web application with a tabbed interface. Each tab will have a form to enter data, and the requisite save and continue

RE: [PHP-DB] Saving state

2003-09-16 Thread Duane Lakoduk
Luke, Good point, this list is set up different in that Reply ONLY replies to the individual poster, not the list. Have to use reply to all. I have added the list address to this post. To all concerned, this thread contains some off list conversation that may be of interest, particularly to the

Re: [PHP-DB] Saving state

2003-09-16 Thread Luke Skywalker
Yeah, that is a good way to do it, i would do something similar too but Shiloh seemed to not want to requery the database, althought querys in this case would be the quickest and simplest way to get the historical information, which would be stored in the database already, and as you said, update

[PHP-DB] Why varying functionality across php db apis for db metadata?

2003-09-16 Thread Mike Klein
For example, php mysql library supports list_dbs and list_tables commands as well as getting table metadata. MySQL sql also 'natively' supports these commands (show databases, show tables, describe tableName). Why not similar commands for Oracle, SQLServer, etc.? These are simply selects against

[PHP-DB] Graphs

2003-09-16 Thread Balaji H. Kasal
Hi, I have data (in numeric format) stored in MySql. This data I am collecting hourly. Now I want to generate the graphs using this data and to display them in the browser. Which r the tools/utilities are available to do the same? I am using PHP4.2.2, Apache server and MySQL. Thanks in

Re: [PHP-DB] Graphs

2003-09-16 Thread j.zanen
Hi I have been using the utilities from this website with very good results http://www.aditus.nu/jpgraph/ Jack from: Balaji H. Kasal [EMAIL PROTECTED] date: 2003/09/16 Tue PM 06:48:48 CEST to: [EMAIL PROTECTED], PHP List [EMAIL PROTECTED] subject: [PHP-DB] Graphs Hi, I have

[PHP-DB] Re: [PHP] Re: [PHP-DB] Graphs

2003-09-16 Thread Chris Sherwood
I found phpchartdirector to be a nice third party app http://www.hotscripts.com/Detailed/12237.html - Original Message - From: [EMAIL PROTECTED] To: Balaji H. Kasal [EMAIL PROTECTED]; [EMAIL PROTECTED]; PHP List [EMAIL PROTECTED] Sent: Tuesday, September 16, 2003 10:12 AM Subject:

[PHP-DB] store whois requests

2003-09-16 Thread IS
I want to store whois requests including the ip address and date/time stamp into a file or MySQL database (a database is what I prefer to use) for monitoring the PHP whois script. Anybody an idea of how I could do this? I'm a beginner in PHP so any help is welcome. --IS -- PHP Database Mailing

RE: [PHP-DB] store whois requests

2003-09-16 Thread Ryan Marks
This is some code I already use... you may wish to change the way you retrieve you whois data. Ryan html headtitleWhois/title/head body form name=theform action=whois.php method=post Hostname: input type=text name=host length=30 input type=submit /form ?php //if a domain name was provided if