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.
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
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
.
>
> 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
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
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
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
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
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
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
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
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
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
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
James,
Firstly I have a suggestion for you, I downloaded a copy of something
called VMWare, it allows you to install virtual machines, ie, depending
on your disk space you can run mutliple operating systems without multi
boot. It even has the ability to forget changes, so you can have a
stable bu
hi all,
i have installed php and apache on my home computer..i am running xp home edition.
the problem is that the php and apache are not working together. what i have done so
far:
1. configured the httpd.conf file by adding the following lines:
ScriptAlias /php/ "c:/php/"
AddType application/x
sure
- Original Message -
From: "Nick Wilson" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, January 28, 2002 2:50 PM
Subject: Re: [PHP] php vs asp
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
>
> * and then liz lynch blurte
can someone tell me whether or not asp can be used with mysql and is there any
drawbacks to using it as opposed to php
which is line 235?
"Daniel Harik" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> I have following code
>
> class Member{
>
>function vallidateForm ($HTTP_POST_VARS){
> echo "$HTTP_POST_VARS['frmUsername']";
>}
>
> }
> $user = new Member;
> if($ac
One idea is to read the file into an array, use substr to match the
existance of the user to be deleted, and if the user isn't to be deleted,
read the line into a new array, then write the new file to the array.
"Hew Staff" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTE
http://www.onlamp.com/pub/a/php/2001/06/07/php_foundations.html
"Justin French" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Hi all,
>
> I really want to get me head around arrays, becuase
> I KNOW there's a better way to do some of the stuff
> i'm doing
Sounds like $HTTP_POST_VARS is not a valid array (to check do
if(is_array($HTTP_POST_VARS)) { print "YUP"; } else { print "NOPE"; })
Check to make sure that track_vars is turned on in the PHP.ini.
"Lic. Carlos A. Triana Torres" <[EMAIL PROTECTED]> wrote in message
005901c16324$1cf252e0$0301a8c0
Correction:
$count = count($array);
$count = $count/2;
$count = round($count,0);
"Liz Fulghum" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> You could also grab the midpoint of the array:
>
> $count = round(count($array
You could also grab the midpoint of the array:
$count = round(count($array), 0);
then populate your new arrays by using a foreach loop:
$x = 0;
foreach($array as $key => $value) {
if ($x <=$count) {
$array1[] = $value;
} else {
$array2[] = $value;
}
$x++;
}
"D
if ($REMOTE_ADDR=="127.0.0.1") {
do something
} elseif ($REMOTE_ADDR=="remote.somewhere.com") {
do something else
} else {
eeks! its the end
}
List of all the predefined variables:
http://www.php.net/manual/en/language.variables.predefined
use unlink() to remove the temporary file.
http://www.php.net/manual/en/features.file-upload.php contains a whole bunch
of information on the topic that may be useful
--
Liz Fulghum
--
http://www.lipstickalley.com/ - Be Popular!
Want to
servers and tested?
(ducking coz Im sure to have annoyed someone)
Liz
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]
Depending on the changes whether they are more enhancements or showing
stopping bug fixes, could they not be withdrawn and put in as first changes
for 4.0.6?
> -Original Message-
> From: James Moore [mailto:[EMAIL PROTECTED]]
> Sent: Sunday, April 22, 2001 5:01 PM
> To: Sascha Schumann
>
28 matches
Mail list logo