Re: [PHP-DB] configure PHP4 with sybase-ct

2001-05-02 Thread Selvin Sakal
I am on a lan and i would like to know how to use PHP's get_meta_tags function though my proxy. Can someone write me some sample code. Thanks _ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. --

Re: [PHP-DB] database synchronizing

2001-05-02 Thread CC Zona
In article [EMAIL PROTECTED], [EMAIL PROTECTED] (Benny K. Putera) wrote: I have 2 systems, local and internet. I want my Internet database is updated from local database. How can I make this through php script? See the manual for your DBMS for info on terms like replication, backup,

[PHP-DB] IMPORT DATA

2001-05-02 Thread Jennifer Arcino Demeterio
hello all, did anyone know on how to import data from one database to another using Mysql? Thanks

Re: [PHP-DB] ora 12154 tns problems

2001-05-02 Thread jarry
Try to make listener.ora file by net8assistant jarry Laurent GARCIA wrote: ** Top Secret ** ** High Priority ** i have windows2000 server, iis5.0, oracle client 8.0.5 and php 4.0.3pl1 i have oci8 and oracle installed i can access to oracle by

Re: [PHP-DB] configure PHP4 with sybase-ct

2001-05-02 Thread Stig Sæther Bakken
[Lester June Cabrera [EMAIL PROTECTED]] Hi, When I run configure in my Solaris box ./configure --with-nsapi=path of iPlanet --enable-libgcc --with-mysql=path of my MySQL --enable-track-vars --enable-short-tags

Re: [PHP-DB] PostgreSQL7.1: It's worth to upgrade.

2001-05-02 Thread Anuradha Ratnaweera
You have forgotton to mention new SQL features such as outer joins. Postgres have been supporting many advanced sql features for a long time those were not supported by other databases. Anuradha On Tue, 24 Apr 2001, Yasuo Ohgaki wrote: Hello PostgreSQL users, I'm testing PostgreSQL 7.1

Re: [PHP-DB] How to randomly select data in a field. Please help newbie.

2001-05-02 Thread Johannes Janson
Well the only way to do this properly is a cron job. have a look at http://forums.devshed.com/showthread.php?threadid=13642forumid=5 hope it helps MAX [EMAIL PROTECTED] schrieb im Newsbeitrag 002301c0d2c0$b49b3c00$0300a8c0@cv2">news:002301c0d2c0$b49b3c00$0300a8c0@cv2... Hi, I'm newbie from

[PHP-DB] mysql-php

2001-05-02 Thread Mikail
hi, I'm a newbie from Italy I use php with mysql and I need to find a way to visualize the difference between two dates. For ex in a row I have column [A] and column [B] [A] 2001-05-02 10:00:00 [B] 2001-05-02 10:01:30 If I use SELECT TIME_FORMAT([B]-[A], '%H:%i:%s') result is 00:01:30 But it's

[PHP-DB] creating a downloadable file ...

2001-05-02 Thread Steve Brett
hi, i have a table that is populated from a database. the only problem with it is that the table is quite large. i'd like to give the user to the option to download the file in csv format ... can anybody point me in the right direction ? Steve Brett Internal Development tel: 4251 EMIS Ltd.

Re: [PHP-DB] Sessions ???

2001-05-02 Thread Angie Tollerson
Dave, What you need to do is make sure that the variable: $topidID is being set to a value first (before you register it you must get it from the table. Once it is set you need to register it as you did BUT WITHOUT the $. So it will say: ? session_start(); session_register(topidID); ? Make

Re: [PHP-DB] Sessions ???

2001-05-02 Thread DC
Thanks Steve; I now have this in a session file in my tmp dir topicID|s:1:8; Now how do i get the link to read http://localhost/forums/view.php?topicID=8 i think its along the lines of http://localhost/forums/view.php3?PHPSESSIONID?topicID I am banging away, the 4 books i have on Php are

Re: [PHP-DB] Sessions ???

2001-05-02 Thread John Edward Molano
Hola. Quiero saber que debo hacer para poder conectar a Informix a través de php4. De antemano, gracias por la ayuda. John Molano ---Original Message--- From: Angie Tollerson Date: Wednesday, May

Re: [PHP-DB] Sessions ???

2001-05-02 Thread Joe Brown
Doh! I meant there is NO dire need Joe Brown [EMAIL PROTECTED] wrote in message 9cp3kv$3hj$[EMAIL PROTECTED]">news:9cp3kv$3hj$[EMAIL PROTECTED]... For this operation there is dire need for session management. And remember the default variable order EGPCS may cause you trouble if you're

[PHP-DB] odbc_tableprivileges help required

2001-05-02 Thread Mark Newnham
Could someone supply simple examples of how this command works. I am trying to use it like this - $conn=odbc_connect(poinv,,); $result=odbc_tableprivileges($conn,pt_mstr,%,%); odbc_result_all($result); but this returns Warning: SQL error: , SQL state 0 in SQLTablePrivileges in

[PHP-DB] pgsql 7.1 build

2001-05-02 Thread Ron Patterson
Hi there, I'm building the new PHP-4.0.5 with support for PostgreSQL 7.1 database and get the following build error: gmake[3]: Entering directory `/net/clear1/home/rpatters/php-4.0.5/ext/pgsql' /bin/sh /net/clear1/home/rpatters/php-4.0.5/libtool --silent --mode=compile gcc -I.

[PHP-DB] pear db and pgsql

2001-05-02 Thread rob caSSon
i'm having a hell of a time figuring out how to connect to a postgresql database using the pear db abstraction...here's some code snippets: with mysql (works fine): require_once('DB.php'); $db = DB::connect(mysql://username:password@localhost/audio); if

[PHP-DB] Re: [PHP] MySQL fulltext indices and phrase search

2001-05-02 Thread Steve Werby
Jens Kisters [EMAIL PROTECTED] wrote: Hi there, is there a possibility to use MySQL's MATCH ... AGAINST to look for a string like foo bar ? if i MATCH keyname AGAINST ('foo bar') i get resuts that match foo or bar, but not both of them separated by a space. My guess is that the

[PHP-DB] MySQL fulltext indices and phrase search

2001-05-02 Thread Jens Kisters
Hi there, is there a possibility to use MySQL's MATCH ... AGAINST to look for a string like foo bar ? if i MATCH keyname AGAINST ('foo bar') i get resuts that match foo or bar, but not both of them separated by a space. My guess is that the organization of the index doesn't allow this kind of

[PHP-DB] Date Ranges

2001-05-02 Thread Mike Baerwolf
Hi, I'm working on a event calendar and some events span more than one day. I would like to store a date range like 2001-02-05 thru 2001-07-05 so when I do a query for the current day the event would appear for all the days in the range. I hoping someone can point me to some documentation or

[PHP-DB] updating database on internet server

2001-05-02 Thread Benny
I have 2 systems, local and internet. I want my Internet database is updated from local database. How can I make this? Regards; Benny. -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact

[PHP-DB] open foxpro database

2001-05-02 Thread Benny
I used function dbase_xxx to access foxpro database (.dbf) but it's not work. Here is my code : ? if (dbase_open(/home/benny/test/employee.dbf,0)) { for ($i=1; $i=dbase_numrecords($open); $i++) { $rec = dbase_get_record($db, $i); $nf = dbase_numfields($db); for ($j=0;

[PHP-DB] RE: [PHP] RE: [PHP-DB] open foxpro database:solved

2001-05-02 Thread Benny
Thank's a lot. I make the employee.dbf free table. And it's work. Regards; Benny. -Original Message- From: Scott Bernard [mailto:[EMAIL PROTECTED]] Sent: 03 Mei 2001 8:44 To: Benny; [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: [PHP] RE: [PHP-DB] open foxpro database Try it again,

Re: [PHP-DB] open foxpro database

2001-05-02 Thread Abdul Kadir
Your problem is caused by file name writing (because filename is case-sensitive). PHP can read any FoxPro's Tables (free tables or databases tables). Regards, Abdul Kadir - Original Message - From: Benny [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, May 02, 2001 9:12 AM

[PHP-DB] Uploading Images

2001-05-02 Thread Pankaj Ahuja
Hi All I want to upload images to my server and name them as found in my local machine. I am able to upload them using the copy function but the name on the server is not the same on my local machine. How can I go about this Thanks -- PHP Database Mailing List (http://www.php.net/) To

Re: [PHP-DB] pgsql 7.1 build

2001-05-02 Thread Yasuo Ohgaki
I haven't built 4.0.5 with PostgreSQL7.1, but I built CVS source with V7.1. Last night, it compiles with warning message. It seems working, not tested. For the time being, how about use latest CVS snapshot? (And report problems, so that we can get stable postgresql module for 4.0.6?) Regards,

[PHP-DB] Migrating from InterBase 4.0 to 6.0

2001-05-02 Thread Steve Farmer
Hi all, I need to migrate a database from InterBase 4.0 to 6.0 . Question is has anybody done this and what are the snafus !! The migration docs for 6.0 only seem to mention migration from 5.0 !! I would imagine a complete export from 4.0 and import into 6.0 would be the way to go. Any

[PHP-DB] Proxy

2001-05-02 Thread Selvin Sakal
I am behind a LAN and i would like to know to use PHP's get_meta_tags function though a proxy. Can someone write me the help or write me the code thanks _ Get Your Private, Free E-mail from MSN Hotmail at