[PHP] Plotting Tool

2008-10-07 Thread Liz Kim
Hi, Anyone have any suggestions on a plotting package for PHP? Nothing too crazy and fancy - just easy to read plots/graphs. We were using PHPlot on our old server but it's requiring too many lib's/util's to install on a new server. TIA.

Re: [PHP] SQLExtendedFetch

2008-09-18 Thread Liz Kim
thanks for all your input. unfortunately, i cannot set up a new database as it is being used by other applications/websites. the versions of odbc, php and apache are all the same... please do let me know if you have any other suggestions! thanks On Wed, Sep 17, 2008 at 5:48 PM, Chris <[EMAIL PRO

[PHP] SQLExtendedFetch

2008-09-17 Thread Liz Kim
I've posted this already but I thought a new subject might help.. I have a script which connects to a MS SQL database, executes a query then displays the result. There are two identical Apache web servers and one MS SQL database server. When the script is ran on web server #1, all the results are

Re: [PHP] SQL outer join problem

2008-09-17 Thread Liz Kim
. > > Thank you, > Micah Gersten > onShore Networks > Internal Developer > http://www.onshore.com > > > > Liz Kim wrote: > > have a very simple script which connects to a database, execute a query > > then displays the result. > > This script use

[PHP] SQL outer join problem

2008-09-16 Thread Liz Kim
have a very simple script which connects to a database, execute a query then displays the result. This script uses odbc_connect and functions. There are two identical Apache web servers and one MS SQL database server. When the script is ran on web server #1, all the results are returned correctly

Re: [PHP] php_mssql.so

2008-03-27 Thread Liz Kim
AIL PROTECTED]> wrote: > Liz Kim wrote: > > We have a set of PHP files which uses "dl()" to load the extension > > "php_mssql.so" at runtime. > > These were running on a server with PHP 4.3.9 and have been recently > moved > > to a new server with

[PHP] php_mssql.so

2008-03-27 Thread Liz Kim
We have a set of PHP files which uses "dl()" to load the extension "php_mssql.so" at runtime. These were running on a server with PHP 4.3.9 and have been recently moved to a new server with PHP 5.1.6 (both RedHat). I have tried to simply copy the file "php_mssql.so" file to the directory of PHP mod

[PHP] Regular expressions

2007-12-11 Thread Liz Kim
I am trying to do a password match with php.. It needs to be at least 6 characters, contains 2 alphabets and at least 1 number or a special character... if (!preg_match("/^.*(?=.{6,})((?=.*\d)|(?=.*[,[EMAIL PROTECTED]"\/'+\*\?\.\[\]\^$\(\){}\|\\&:;'<>~`#%_-]))([a-zA-Z]{2,}).*$/", $pw1)) {error m

[PHP] [mssql_connect error] Changed database context to..

2007-08-23 Thread Liz Kim
Did anyone else run into this problem? PHP fails to connect to MSSQL7 with mssql_connect with the message: Changed database context to ''. I've been searching around but did not find a good solution for PHP. I did find this link: http://support.microsoft.com/default.aspx?scid=KB;EN-US;197459 But

[PHP] [mssql_connect] Interfaces File?

2007-08-23 Thread Liz Kim
Hello, I am trying to connect to a mssql server from php 4.3.9. mssql_connect('IP_ADDRESS:PORT_#',LOGIN,PASSWORD) or die("Could not connect to the mssql server"); is failing... after doing a little bit of research, I found this on php.net *"mssql_connect()* establishes a connection to a MS SQL s

[PHP] Recompiling PHP with mssql

2007-08-22 Thread Liz Kim
Hi, I am trying to install Microsoft SQL server functions to PHP 4.3.9 on redhat. When PHP was first installed, it was not configured to include the MSSQL functions. I would like to only add these functions and not touch what is already there... How do I proceed? Any help would be greatly apprecia

[PHP] Size Limit PHP + MSSQL

2007-02-23 Thread Liz Kim
Is there size limit for select queries in php? I am trying to grab a very long string that exists in the database. When I do a select and print it out, php keep truncating the string - only outputing the first half or so when the string is too long. I have checked the actual database and the stri

[PHP] Magic Quotes

2007-02-23 Thread Liz Kim
I've got all three Magic Quote directives turned off... When I use sql query to grab any string from a database, it still spits out the \ in front of the special characters.. Any ideas? thanks

[PHP] PHP + SQL..

2007-02-22 Thread Liz Kim
I am storing a lot of text into my mssql database. Are there any special characters I should watch out for? I think so far I've got ' covered. Also, when I retrieved the string later on... The ' is printed out with a \ in the front. How do I get rid of the \? When I try to get a really long strin