[PHP-DB] www.oosha.com/phpdev/

2001-07-15 Thread Brett Shaw
Oosha.com's PhpDEV has got a mailing list if you would like to joing please see below: - To subscribe to the mailinglist, simply send a message with the word 'subscribe' in the Subject: field to the -request address of that list To: [EMAIL PROTECTED] Subject: subscribe To subscribe to the

[PHP-DB] Re: Question about strlen .. I think

2001-07-15 Thread Dennis Kaandorp
Sorry wrong section :\ Dennis Kaandorp [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Hello, On my site users can submit ftp's. Is there a way to replace the spaces between the paths? This is what I mean: /uploads//by/ /dennis/ must become

RE: [PHP-DB] www.oosha.com/phpdev/

2001-07-15 Thread David Balatero
I don't think this was the best place to advertise your list, seeing as everyone on here is ALREADY on a helpful list; I don't think they need another one to clutter their inbox up with 30 more messages daily. Oh, and those link colors have to go: white on light blue doesn't work...heh

RE: [PHP-DB] www.oosha.com/phpdev/

2001-07-15 Thread David Balatero
Sorry, I was frustrated at the moment trying to get other crap to work, and was in bitch at nearest person mode. Again, I'm sorry. -- David Balatero -Original Message- From: Brett Shaw [mailto:[EMAIL PROTECTED]] Sent: Sunday, July 15, 2001 12:21 PM To: [EMAIL PROTECTED] Subject: Re:

[PHP-DB] PLEASE HELP! Problem with ODBC string insert

2001-07-15 Thread AKA Hook
I am using an Access DBASE and trying to insert text from a form field. When I use quotes in my text the code errors out, otherwise it works fine. I have Magic Quotes turned on which is supposed to fix this problem but IT DOES NOT! I have posted in several forums but no one has been able to help

[PHP-DB] [ANN] MySQLConnect for 4D 1.0 Demo

2001-07-15 Thread spinel
FOR IMMEDIATE RELEASE Exenevex, SA ( http://www.exenevex.com ) announces release of MySQLConnect for 4D 1.0 demo version Paris, France - Monday, July 16th, 2001: Exenevex, SA, today announced the release of demo version of MySQLConnect for 4D 1.0 (MacOS Windows). MySQLConnect for 4D is a 4th

Re: [PHP-DB] lost link to pgsql thru PHP pages

2001-07-15 Thread Cornelia Boenigk
Hi Albert Hi, i have tried in any mode to pass the link from 1st page where i make the connect and the second where the connect is lost. Not the connection is lost but the variable $link. You use pg_pconnect which establishes a persistent connection. This connection is not automatically

RE: [PHP-DB] PLEASE HELP! Problem with ODBC string insert

2001-07-15 Thread Matthew Loff
It might help us to see exactly what the query is... Could you insert an echo statement and let us know what SQL query it's producing? echo INSERT INTO News (NewsDate,NewsTitle,NewsText) VALUES ('$NowDate','$NewsTitle','$NewsText') ; -Original Message- From: AKA Hook

[PHP-DB] MSSQL Date

2001-07-15 Thread Gwilym
I'm experiencing a problem with returning dates from MSSQL. Firstly, I can't get it to return seconds. Secondly, the format seems to change occasionally. I can't pinpoint when. One format is 15 Jul 2001 12:51AM and the other is Jul 15 2001 12:51AM. I can code around this, but it's annoying. My

[PHP-DB] Re: Performance: why it take so long time?

2001-07-15 Thread Manuel Lemos
Hello Stefano, On 10-Jul-01 04:31:57, you wrote: Hi. I am using PHP4+Apache 1.3.14 (win32)+[Access-local | Oracle-remote] with very simple query on small tables. When I start the page.php it takes several second to display the results: it seems that it is waiting someting; if there are many

Re: [PHP-DB] PLEASE HELP! Problem with ODBC string insert

2001-07-15 Thread AKA Hook
Here is the echo output. UPDATE News SET NewsTitle = 'Text', NewsText = 'can\'t use quotes!' WHERE NewsID = 16 Matthew Loff [EMAIL PROTECTED] wrote in message 000e01c10d89$6fa576c0$0100a8c0@bang">news:000e01c10d89$6fa576c0$0100a8c0@bang... It might help us to see exactly what the query is...

[PHP-DB] How to drop a table when user leaves prematurely?

2001-07-15 Thread BD
Ugh! I'm sure this is fairly simple, but I have yet to come up with a way to do it... In a nutshell, our application creates, uses and drops a table while the user is working on the site. Unfortunately, because of other considerations, we can't use a defined temp table - it has to be created

[PHP-DB] Help you with our programming skills and experience

2001-07-15 Thread David Rosen
Hello, We are a team of experienced programmers with skills of PHP/Perl/JAVA/C++/VB/Servlet/JSP/ASP/PowerBuilder/XML/ DHTML/WAP WML with database of MySQL/MS Access/ MS SQL/ORACLE/DB2/Sybase/Informix. We are experienced in programming for various E-Commerce web site and standalone

RE: [PHP-DB] PLEASE HELP! Problem with ODBC string insert

2001-07-15 Thread Matthew Loff
That looks like a valid query to me... I know this would break SQL92 standard, but have you tried enclosing the values in double quotes? I know that's valid with MySQL... I don't have any other suggestions... Does anyone else? -Original Message- From: AKA Hook [mailto:[EMAIL

[PHP-DB] relay response transactions between PHP scripts on different servers

2001-07-15 Thread Ken Sommers
Hello, suppose you have a MOVIES table in your database on your server at your hosting company. Suppose I want some MOVIE info from your database..the titles of all the Robert Deniro movies released in the 1980's. Can I get the info and relay it back to the user on MY site? Would it be something

RE: [PHP-DB] relay response transactions between PHP scripts on different servers

2001-07-15 Thread Matthew Loff
Ken-- If you have access to that server with the SQL database... Then instead of creating an additional PHP script on the SQL server... Could you simply add a username/password that was allowed to access that particular database (read-only, of course) remotely? If that isn't an option,

Re: [PHP-DB] PLEASE HELP! Problem with ODBC string insert

2001-07-15 Thread AKA Hook
I tried double quotes and many different combinations of single and double but nothing has worked. There HAS to be an answer out there! Do certain SQL statements just not work in PHP / Access? Is this a bug in Access or PHP? If I can't get this to work then I won't be able to use PHP for this

RE: [PHP-DB] PLEASE HELP! Problem with ODBC string insert

2001-07-15 Thread Matthew Loff
It would be a hack, but if the data is only going to be used for the site (e.g. nobody is going to use the data through access) you could str_replace() the single quote to something else (perhaps an HTML ASCII representation like #;) before the INSERT/UPDATE, and converting back when

Re: [PHP-DB] relay response transactions between PHP scripts on different servers

2001-07-15 Thread Ken Sommers
Here's the part that confuses me: How does MovieResponder.php on your site get the results back to my site and back to the browser/user who is visiting my site..? ken - Original Message - From: Matthew Loff [EMAIL PROTECTED] To: 'Ken Sommers' [EMAIL PROTECTED]; 'PHP DB Mailing List'

RE: [PHP-DB] relay response transactions between PHP scripts on different servers

2001-07-15 Thread Matthew Loff
You could use file functions with a URL: $movie_site = fopen(http://www.site.com/MovieResponder.php?star=; . urlencode($star) . year= . urlencode($year), r); $movie_info = fread($movie_site, 10240); fclose($movie_site); -Original Message- From: Ken Sommers [mailto:[EMAIL PROTECTED]]