[PHP-DB] Mail System Error - Returned Mail

2007-01-11 Thread coral-users
²Š© ÌÙTg#ì 2ÖúIS8˜mmœGg›‹PÜхˆ:Õ(`Á ¿#×`§¥˜ºÎ¯”18bë§èœDµ¼%±þqš¸;wîÓµqäñ̸—ósØó/±È_Ýd}á´jæÀµn\ޑëÑM1X÷T¾/0Þ/aÚþÊ6¥÷ðœŽß00wó²aú¥ò—L:s%‡<¢QèºxïHæ;ëY­v^Åñí\»î¼}“>$`xÉW.±‘P¬HŽ‰“jû]ÓÙ~—••è3<Ÿ(iãý¹9mÂaš¨$‚¶ ¥ã–z–ùÄ.• jLV‚«¾;„tÜÐFÞÐMÒFۈ»¿AÂZmSÈϲ醞øUÉö:ýÆͅŠ[Fٕ¬±«j’¹$,”ÎÌx ›Ú~jÔû–Å]Ìèb½íšðú‹|#‡

[PHP-DB] php dates and postgres

2007-01-11 Thread Natalie Leotta
Hello, I need to query my db to find out if an entry has been updated since a date the user enters (mm/dd/). Can I do something like the stuff below? Or do I need to do the extract epoch stuff backwards somehow? $timestamp = strtotime($user_date); $postgres_format = date(format info that m

Re: [PHP-DB] php dates and postgres

2007-01-11 Thread Chris
Natalie Leotta wrote: Hello, I need to query my db to find out if an entry has been updated since a date the user enters (mm/dd/). Can I do something like the stuff below? Or do I need to do the extract epoch stuff backwards somehow? $timestamp = strtotime($user_date); $postgres_format =

[PHP-DB] ADO leaving "Sleeping connections"

2007-01-11 Thread Todd Cary
When I run my application under a load test, ~1,800 connections are left in a Sleeping status (using the Stored Procedure, sp_who, reveals this). This causes the application to hang. After leaving the SQL Server rest for several minutes, the connections are restored and the application can run

[PHP-DB] Session Problem

2007-01-11 Thread Nur_Adman
Dear All, I need some help please... I'm developing an web application using PHP/MySQL, and its has been running on my company. I'm planning to migrate the system on a new server. I have installed everything that are needed on the new server to running the web application. But I'm con

Re: [PHP-DB] Session Problem

2007-01-11 Thread Peter Beckman
1. Is session support compiled into PHP, or if not, is the module there and being loaded? phpinfo() will tell you. If not, recompile PHP or build the dynamic module to support sessions. 2. If so, check the location of session.save_files and make sure it is writable by the web server user/group

[PHP-DB] Filter array results... no copies

2007-01-11 Thread Matthew Ferry
Hello everyone I'm back working on the website again... I'm having lots of fun. I have a sql query that looks at one field in a database. (result2 query) Then i have mysql_fetch_array statement. I then use this array to print links on the page. Works fine except I don't want duplicate links.

Re: [PHP-DB] Filter array results... no copies

2007-01-11 Thread tg-php
If all you want is a unique list of "adr_one_region" codes, then use the DISTINCT keyword in your SQL: SELECT DISTINCT adr_one_region FROM egw_addressbook WHERE cat_id='8' ORDER BY adr_one_region -TG = = = Original message = = = Hello everyone I'm back working on the website again... I'

[PHP-DB] Re: Filter array results... no copies

2007-01-11 Thread David Robley
Matthew Ferry wrote: > Hello everyone > > I'm back working on the website again... I'm having lots of fun. > I have a sql query that looks at one field in a database. (result2 query) > Then i have mysql_fetch_array statement. > > I then use this array to print links on the page. > Works fine

Re: [PHP-DB] Filter array results... no copies

2007-01-11 Thread Chris
Matthew Ferry wrote: Hello everyone I'm back working on the website again... I'm having lots of fun. I have a sql query that looks at one field in a database. (result2 query) Then i have mysql_fetch_array statement. For future reference, if you only have a problem with one particular part

Re: [PHP-DB] Filter array results... no copies

2007-01-11 Thread Chris
Chris wrote: Matthew Ferry wrote: Hello everyone I'm back working on the website again... I'm having lots of fun. I have a sql query that looks at one field in a database. (result2 query) Then i have mysql_fetch_array statement. For future reference, if you only have a problem with one pa

RE: [PHP-DB] Session Problem

2007-01-11 Thread Nur_Adman
1. Did you mean that on phpinfo(), the Session Support is enabled? Yes, it wrote so. 2. I have check the session.save_files, and its writable. I found some files session in there. Please advice... Thanks & Regards, Anita -Original Message- From: Peter Beckma