RE: [PHP-DB] Url link

2001-05-15 Thread Michael Rudel
Hi Mark, have a look @ http://www.php.net/manual/en/function.stripslashes.php Greetinx, Mike Michael Rudel - Web-Development, Systemadministration - ___ Suchtreffer AG Bleicherstraße 20 D-78467 Konstanz Germany fon:

[PHP-DB] Passing variables to/from Flash

2001-05-15 Thread Atanas Vassilev
I'm trying to send variables to a flash movie... In fact the designer of the flash part of the site told me that ActionScript had a built in function getData that had one of its arguments the url from where the data should be pulled out - if he points his function to a *.php page in what form

[PHP-DB] odbc errors

2001-05-15 Thread Jello
i've just upgraded my computer... running win ME ( i know), PWS and PHP 4.0.5 and access 2000 (odbc) ... the same set up as my last one... i keep getting error msg from scripts that worked only last week on the old setup... the DB is ok as it will connect prepare and execute with no error...

[PHP-DB] Heterogeneous queries with mssql

2001-05-15 Thread Gary Pullis
Is there a way to set the ANSI_NULLS and ANSI_WARNINGS options when using mssql_connect(), etc., to connect to an MS SQL server database? I'm trying to execute the following query via PHP: select R.Rank, CS.ACCOUNTNO, R.Path from openquery(Resumes, 'SELECT Rank, Path, FileName

RE: [PHP-DB] odbc errors

2001-05-15 Thread Andrew Hill
Jello, It appears that your odbc_connect is not happening :) Can you post your code? Best regards, Andrew Hill Director of Technology Evangelism OpenLink Software http://www.openlinksw.com Universal Data Access Data Integration Technology Providers -Original Message- From: Jello

Re: [PHP-DB] newbie: showing records from SQL

2001-05-15 Thread Marc Johnson
I am a newbie also. Here is the link that got me started (I use MySQL, but I am certain the call tags should be the same, if not, very similar). http://www.webmasterbase.com/article.php?aid=228 A little tutorial ranging from installation notes - creating and entering data - pulling data to

[PHP-DB] Database Name in Metabase (Manuel Lemos)

2001-05-15 Thread snpe
Hello, I try metabase library. I don't know what I set database name (any database : oracle, postgresql etc) peco -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list

[PHP-DB] Closing a frame to facilitate dynamic content

2001-05-15 Thread Vanessa Haakenson
Hi Everyone, I have a question and I know it can be figured out because I did it before but I've since deleted the file and can't remember how I did it...but I'm hoping someone else has done something similar and can help me figure this out again. I have a news service where we reference other

Re: [PHP-DB] odbc errors

2001-05-15 Thread Angie Tollerson
Jello, You may want to look at some of the user comments on odbc_result_all manual on php.net: http://www.php.net/manual/en/function.odbc-result-all.php Some people mentions errors and fixes there for your problem. I think you are getting connected or you would have got your error messages

Re: [PHP-DB] odbc errors

2001-05-15 Thread Angie Tollerson
P.S. One of the users there mentions that she had to open the odbc_free_result INTO a variable in order for it to work: $free_result = odbc_free_result($sql_result); for example Angie Jello [EMAIL PROTECTED] 05/15/01 10:27AM i've just upgraded my computer... running win ME ( i know), PWS

RE: [PHP-DB] Passing variables to/from Flash

2001-05-15 Thread [EMAIL PROTECTED]
afaik it's something like: var1=value1var2=value2var3=value3... -Original Message- From: Atanas Vassilev [mailto:[EMAIL PROTECTED]] Sent: Dienstag, 15. Mai 2001 12:31 To: [EMAIL PROTECTED] Subject: [PHP-DB] Passing variables to/from Flash I'm trying to send variables to a

Re: [PHP-DB] Database Name in Metabase (Manuel Lemos)

2001-05-15 Thread Manuel Lemos
Hello, snpe wrote: Hello, I try metabase library. I don't know what I set database name (any database : oracle, postgresql etc) Do you mean the database type or the database name? The database type (oracle, postgresql, etc) is set with the Type argument of the

[PHP-DB] Trying to pull a weeks worth of data of a DATE entry

2001-05-15 Thread Marc Johnson
I am trying to pull a weeks worth of data from MySQL from a DATE var field. Which in turn I can seperate to each days 'entries' sorted by date AND time. Basically trying to set up a page to pull 'news entry date' sorted by date and time, with each day having its own header (like you see on so

Re: [PHP-DB] file() fails to read https

2001-05-15 Thread Steve Sobol
From 'Mark Cain': Yes. I am actually getting real content on the non-secure connection. Yes. The secure connection is really functional on the other server. (I = can actually cut the above address and paste it into the address bar and = get the results that I am expecting.) I don't think the

[PHP-DB] MySQL Connect Problem

2001-05-15 Thread Jeff Oien
I have MySQL on a new Win2000 install and can't connect to it using PHP. I am able to connect using the command line. I'm not sure what the next step is to troubleshoot. I've checked the username and password in the .ini file using WinMySQLAdmin. I'm using Apache which is working fine otherwise.

RE: [PHP-DB] Trying to pull a weeks worth of data of a DATE entry

2001-05-15 Thread Tyrone Mills
Hi Marc, If I understand your question correctly, the SQL Syntax you might want to try would be: SELECT col_1, col_2 FROM table_name WHERE date_col = $from_date AND date_col = $to_date Or if you want to get each days results individually, you could do something like this in a loop, where $loop

[PHP-DB] Apache+PHP+MSSQL+FreeTDS

2001-05-15 Thread Anil Kumar
Hi, this is the most common subject of this mail list! i am experiencing the same problem. i tried my best reading available archives and experimented the suggestions given in them. my problem still persists :( any help will be greatly appreciated. here is my environment: Apache : 1.3.12 on

Re: [PHP-DB] MySQL Connect Problem

2001-05-15 Thread Shahmat Dahlan
Is the MySQL and Apache running on the same machine? Jeff Oien wrote: I have MySQL on a new Win2000 install and can't connect to it using PHP. I am able to connect using the command line. I'm not sure what the next step is to troubleshoot. I've checked the username and password in the .ini

RE: [PHP-DB] MySQL Connect Problem

2001-05-15 Thread Jeff Oien
Yes they are. Jeff Is the MySQL and Apache running on the same machine? Jeff Oien wrote: I have MySQL on a new Win2000 install and can't connect to it using PHP. I am able to connect using the command line. I'm not sure what the next step is to troubleshoot. I've checked the username

[PHP-DB] 'the missing character'

2001-05-15 Thread Jimmy Brake
Hi! Does anyone know of a function in php that will take a chunk of text and seperate it into 'chunks' preferably returning it in an array? The reason being is that I have some columns(oracle) that are set to varchar2(4000) and I have text that is 4000+ AND :-) I cannot change it to another

[PHP-DB] 'the missing character' YIKES

2001-05-15 Thread Jimmy Brake
I forgot to detail the problem, I loose a character every once in a while basically every 3500 characters. Jimmy Brake Cool Tools and Stuff Critical Path Inc. Making your job easier -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional