Re: [PHP] isset($x) fails !

2001-06-22 Thread Chris Lee
need a little more data. how is it failing ? where in what code ? how are you using it ? in what way do you want it to work ? http://php.net/manual/en/function.isset.php -- Chris Lee [EMAIL PROTECTED] kaab kaoutar [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL

Re: [PHP] session question

2001-06-22 Thread George Whiffen
Derick, If you're seriously looking at thousands of concurent users (let alone millions) and the kind of budget on hardware and comms that implies, then I'd suggest you seriously look at your own session solution with MySQL or whatever. You can perfectly easily just use your own

Re: [PHP] Oracle Database keeps disconnecting - or something

2001-06-22 Thread Thies C. Arntzen
On Fri, Jun 22, 2001 at 02:23:14PM +0100, Taylor, Stewart wrote: Hello, Just in case anyones got any ideas. I've been testing an application for a few weeks on a test server without any problems. After releasing it onto the live server, which is - according to the administrator -

Re: [PHP] Oracle Database keeps disconnecting - or something

2001-06-22 Thread Rouvas Stathis
Do you experience any other sort of problems other than those warnings? I mean, is anything wrong with the data? Normally, nothing should be wrong. I have seen the same messages (especially the "service handle not intitialized" one) in my server too. I have traced it to attemtps to close an

[PHP] Variable variable names...

2001-06-22 Thread Brian Weisenthal
let say i wanted to see if a variable existed by the name of $myvar2 . how can i make the '2' come from a variable. so i want to say something like $myvar$othervar .(but obviously that wont work) anyone have a clue? i tried using eval but i couldn't get it right -- PHP General Mailing

Re: [PHP] resource ID?

2001-06-22 Thread Henrik Hansen
Kurth Bemis [EMAIL PROTECTED] wrote: i get this: Resource id #2 when i run this code.whats resource id 2 mean? i just want to know if the query was ok or not $result = mysql_query(SELECT authcode FROM users WHERE email='$email',$db); echo $result; because

Re: [PHP] Developer mailing list

2001-06-22 Thread Henrik Hansen
Julia A. Case [EMAIL PROTECTED] wrote: Hi, I'm trying to write a module for PHP and need a little help, I went to http://lists.php.net to see if there was a developer list, but only found the defualt Apache web page... Can someone direct me in the proper direction? [EMAIL PROTECTED]

RE: [PHP] apache and php ate up all my memory :-[

2001-06-22 Thread Chadwick, Russell
Can you post the information at the header of top like... CPU states: 0.4% user, 0.0% nice, 3.6% system, 0.0% interrupt, 96.1% idle Mem: 47M Active, 147M Inact, 36M Wired, 11M Cache, 35M Buf, 7328K Free Swap: 1024M Total, 144K Used, 1024M Free and also the output of ps waux | grep mysql

[PHP] Also related....(params)

2001-06-22 Thread Brian Weisenthal
I am trying to create a function that will check if a variable exists, if it does leave it alone, if not create it. This is similar to cfparam for those who know cold fusion. Anyone know a good way to deal with this in php4? I just started learning php, im sure someone has had to deal with this

[PHP] passing arrays

2001-06-22 Thread Jason Jacobs
Hi all. I'm trying to pass an array to another page, and I'm not having luck. I thought maybe it would do something slick by passing it in the url, but it doesn't. So, how can I pass the array? I've done it before by going through the array and making a hidden input field for each of the

Re: [PHP] Is this a joke?!

2001-06-22 Thread Henrik Hansen
Fredrik Arild Takle [EMAIL PROTECTED] wrote: Is this a joke? http://www.perl.com/search/index.php nope it's not a joke :) it's pretty nice feature on a perl site :=) -- Henrik Hansen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For

RE: [PHP] Is this a joke?!

2001-06-22 Thread Michael Geier, CDM Systems Admin
I love it... server info: Server: Apache/1.3.19 (Unix) PHP/4.0.4pl1 mod_perl/1.25 -Original Message- From: Fredrik Arild Takle [mailto:[EMAIL PROTECTED]] Sent: Friday, June 22, 2001 9:44 AM To: [EMAIL PROTECTED] Subject: [PHP] Is this a joke?! Is this a joke?

Re: [PHP] Variable variable names...

2001-06-22 Thread Brian Weisenthal
turns out my subject was right on anyone interested check this page out. http://www.phpbuilder.com/manual/language.variables.variable.php Brian Weisenthal [EMAIL PROTECTED] wrote in message 9h02nm$n7c$[EMAIL PROTECTED]">news:9h02nm$n7c$[EMAIL PROTECTED]... let say i wanted to see if a

[PHP] Which is more expensive: concatenation or embedding?

2001-06-22 Thread Jason Lustig
There are two ways to get your variables into a string -- concatenation with single-quoted strings, or embedding in evaluated double-quoted strings. Which is more expensive to the server? For example: ?php $x = 10; echo This is a string and my variable \$x is $x.\n; echo 'This is a string and

RE: [PHP] Is this a joke?!

2001-06-22 Thread James Moore
Is this a joke? http://www.perl.com/search/index.php *hehe* I see someone has been reading my sig, and no its for real. - James -- James Moore [EMAIL PROTECTED] http://www.perl.com/search/index.php - we must be doing somthing right -- PHP General Mailing List (http://www.php.net/)

Re: [PHP] Which is more expensive: concatenation or embedding?

2001-06-22 Thread Phillip Bow
What about: echo This is a string and my variablke $x is .$x.\n; I think your first would be faster, but on such a miniscule level as to be irrelevant. -- phill There are two ways to get your variables into a string -- concatenation with single-quoted strings, or embedding in evaluated

Re: [PHP] passing arrays

2001-06-22 Thread Phillip Bow
You could use sessions, but it may be overkill for what you are trying to do. -- phill Jason Jacobs [EMAIL PROTECTED] wrote in message 001201c0fb50$6f895300$7feb1e18@superman">news:001201c0fb50$6f895300$7feb1e18@superman... Hi all. I'm trying to pass an array to another page, and I'm not having

Re: [PHP] Safe_mode in certain directories

2001-06-22 Thread Christopher Ostmo
Egan pressed the little lettered thingies in this order... On Thu, 21 Jun 2001 14:35:50 -0700 (PDT), Rasmus Lerdorf [EMAIL PROTECTED] wrote: If you are using Apache you can set any PHP directive in Directory ... or VirtualHost ... block by doing something like: php_admin_flag

Re: [PHP] Is it possible to have the parameters fo a function be exited HTML?

2001-06-22 Thread Phillip Bow
rant Its probably just as fast for you to test it out using what you have written here as it is for someone to give you the answer. /rant And in answer to your question no this script will not run properly. -- phill Jason Lustig [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL

Re: [PHP] recompiling libphp4.so with -DEAPI

2001-06-22 Thread DAve Goodrich
on 6/22/01 8:59 AM, Tyler Longren at [EMAIL PROTECTED] wrote: Hello, I recompiled php/apache/openssl/mod_ssl yesterday on a server (exact same as I had done it before). Before apache started up with SSL with no problem. Now when I start (./apachectl startssl), I get this warning: [Fri

RE: [PHP] SQL statement for clearing a table

2001-06-22 Thread Chadwick, Russell
No one has yet mentioned TRUNCATE TABLE x which is a lot faster on large tables because even DELETE FROM evaluates each row where TRUNCATE just clears the data. - Russ --- Toolshed Computer Productions - Professional PHP Hosting Hosting - Dedicated Servers - Design - Programming

RE: [PHP] MySQL Dump In PHP

2001-06-22 Thread Chadwick, Russell
mysqldump is a command to be used at a prompt, from php you could system ("mysqldump whatever /tmp/dump.sql"); --- Toolshed Computer Productions - Professional PHP Hosting Hosting - Dedicated Servers - Design - Programming http://www.toolshed51.com -Original Message-From: Chris

Re: [PHP] MySQL Dump In PHP

2001-06-22 Thread Aral Balkan
I use the mysqldump command line utility to do this and I don't know how to interface that from PHP. However: I just checked how phpMyAdmin does it and apparently it has functions that re-create the dump using queries. You might want to download it (http://www.phpwizard.net/projects/phpMyAdmin/)

[PHP] Problem with timeouts

2001-06-22 Thread Javier Muniz
I've written a PHP script that's used internally by an application backend. It transfers files via FTP from one server to another. This process often takes in excess of 1hr. My problem is that for some reason, even though i've set the max_execution_time in the php.ini is set to 10800 (3 hours)

Re: [PHP] PHP authenticating and session management

2001-06-22 Thread Christopher Ostmo
Bass??? pressed the little lettered thingies in this order... I have a Q. will the Session ID be stolen by hacker when the ID tranfer bewteen client and server ? Then can the hacker send the ID to server and veiw the user's page ? Yes. That *can* happen to any non-encrypted transmission

[PHP] email with variables

2001-06-22 Thread Richard Kurth
I have three different e-mail messages in my program in functions. That I would like to figure a way for the program user to be able to edit this e-mail messages to there liking without having to mess with the code. Now I have figured out with the help of this user group how to do it with

RE: [PHP] BUGS.PHP.NET

2001-06-22 Thread Maxim Maletsky
Yeah, Yeah!!! Let's advertise bugs.php.net! so we get more bugs! This email just made me laugh. :-) -maxim maletsky -Original Message- From: Christine Hall [mailto:[EMAIL PROTECTED]] Sent: Friday, June 22, 2001 8:58 AM To: [EMAIL PROTECTED] Subject: [PHP] BUGS.PHP.NET Hello, I

<    1   2