[PHP] PHP SESSION DURATION.....

2003-11-25 Thread Keith
lasts for the duration of the script? Are session variables stored server-side or does that apply to cookies only? And what about session cookies? Are session cookies stored with the client? Please help Many thanks Keith -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

[PHP] Re: PHP SESSION DURATION.....

2003-11-25 Thread Keith
Correction: I meant to say: Are session variables stored server-side or client-side like cookies? "Keith" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi, > How do I go about making a session last longer that the duration of the > browser? > Say I w

[PHP] How does one run PHP scripts in 'silent mode' ???

2003-12-04 Thread Keith
work. It always opens a browser window even though the script has no echo/print statements in it. Any advice would be appreciated Thanks Keith -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] I need a script for deleting mail from mail boxes...

2003-12-09 Thread Keith
Hi All, I need to know how to write a script for deleting mail from a Linux server. Essentially I need to be able to delete all mail with a date-stamp less than some threshold date. Then I want this script to run from a regular cron job. I am not sure if this is doable in PHP or whether I must wri

[PHP] [OTHER TOPIC - Please Help] Looking for file sync software (Linux)

2003-12-11 Thread Keith
7;Data Restore', and for my purposes the ability to restore is a prerequisite. Any advice would be most appreciated. Thank you Keith -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] simple I'm sure

2001-03-14 Thread Keith
Following loop works fine ! but I don't want $art_nr_1 (which is 4564) I want to have $art_nr_$i but if you use it you just get 1,2,3,4 for ($i=1; $i<50; $i++) : $varid = "quant".$i ; if ($$varid != "") { echo " "; } endfor; -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

Re: [PHP] simple I'm sure

2001-03-14 Thread Keith
$varid = "quant".$i; > if($$varid != ""){ > echo ''; > echo ''; > } >} > >jack > >Keith wrote: > > > > Following loop works fine ! > > but I don't want $art_n

Re: [PHP] PHP Help

2002-03-02 Thread Keith
You aren't going to be able to build a php application with frontpage or any other WYSIWYG HTML editor. You are going to have to type it out, the PHP that is. If this is something that you need done right away, I suggest you hire an experienced PHP programmer. If you don't know much about MySQL or

[PHP] hope someone can help !

2001-08-20 Thread Keith
Clean Suse Linux install ! Get the following from phpinfo.php PHP Version 4.0.4pl1 './configure' '--prefix=/usr' '--bindir=/usr/bin' '--libdir=/usr/lib' '--with-config-file-path=/etc' '--with-exec-dir=%{libdir}/php/bin' '--with-pgsql=/usr' '--with-mysql=/usr' '--with-gd=yes' '--with-tiff-dir

[PHP] Suse Apache

2001-08-28 Thread Keith
would like to build/compile php as a dso ! Linux version is Suse 7.2 apache is version 1.3.19 already compiled with mod.so.c but I don't seem to have an apache/bin and I can't find apxs which should be there ??? Is this a Suse problem or what ?? do I have to de-install apache and re-install a nor

[PHP] Any conflict with $_POST when 2 users concurrently submitting the same form using POST method?

2009-06-09 Thread Keith
T array? Can $_POST array accessible by all domains even if not from the originating domain? Thx for clarification! Keith -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Any conflict with $_POST when 2 users concurrently submitting the same form using POST method?

2009-06-09 Thread Keith
on. This was just a very simplified answer. Keith wrote: Let's say user A and user B submitting purchase order form with "order.php" at the same time, with method=post action='confirmation.php'. (1) Will $_POST['order'] submitted by user A replaced by $_POST['

[PHP] Re: Any conflict with $_POST when 2 users concurrently submitting the same form using POST method?

2009-06-10 Thread Keith
Thanks! Peter. I’m very clear now. "Peter Ford" wrote in message news:bd.38.16665.07c6f...@pb1.pair.com... Keith wrote: Let's say user A and user B submitting purchase order form with "order.php" at the same time, with method=post action='confirmation.p

[PHP] Is there limitation for switch case: argument's value?

2009-08-20 Thread Keith
Hi, I encounter a funny limitation here with switch case as below: The value for $sum is worked as expected for 1 to 8, but not for 0. When the $sum=0, the first case will be return, which is "sum=8". Is there any limitation / rules for switch case? Thanks for advice! Keith $sum=0; s

Re: [PHP] Is there limitation for switch case: argument's value?

2009-08-22 Thread Keith
m... 2009/8/20 Keith : Hi, I encounter a funny limitation here with switch case as below: The value for $sum is worked as expected for 1 to 8, but not for 0. When the $sum=0, the first case will be return, which is "sum=8". Is there any limitation / rules for switch case? Thanks for

Re: [PHP] Is there limitation for switch case: argument's value?

2009-08-22 Thread Keith
echo "sum=0\n"; break; default: echo "sum=3/4/5\n"; break; } Or, write your switch like this: switch( $sum ) { case 8: echo "sum=8\n"; break; case 6: case 7: echo "sum=7 or 6\n"; break; case 1: case 2: echo "sum=2 or 1\n"; break; case 0: echo &quo

Re: [PHP] Is there limitation for switch case: argument's value?

2009-08-22 Thread Keith
d a switch like that first "if/else" style. PHP never ceases to amaze me in it's flexibility (and ability to shoot yourself in the foot ;-p ) And remember, all your base are belong to Adam. -Original Message- From: Adam Randall [mailto:randa...@gmail.com] Sent: Thursday,

Re: [PHP] Is there limitation for switch case: argument's value?

2009-08-24 Thread Keith
:p06240800c6b84328c...@[192.168.1.100]... At 9:44 PM -0700 8/22/09, Lars Torben Wilson wrote: Hi Keith, Glad it works! I'm not sure how inverting the case statement helps you minimize the code in each case. As both I and Adam showed, you can do the same thing more efficiently (and IMHO much more read

[PHP] phpmailer send() always return true even the email address is invalid

2009-08-27 Thread Keith
t;Send() still return as true, however, I didn't receive email from mailer daemon this time. Any idea why this happened? Any solution for me or suggestion to use other send mail class/function that support SMTP authentication? Thanks! Keith -- PHP General Mailing List (http://www.php.n

Re: [PHP] phpmailer send() always return true even the emailaddress is invalid

2009-08-27 Thread Keith
wrote: On Thu, 2009-08-27 at 20:38 +0800, Keith wrote: Due to my web hosting server implement SMTP authentication, I couldn't do it with PHP mail() function, so I opt for PHPMailer. However, the $mail->Send() method always return true even I've set the $mail->AddAddress with inv

[PHP] Error when execute header('location: otherpage.php') after email been sent out. Any Workaround?

2009-08-28 Thread Keith
("location: index.php"). However, error happen with warning: [Cannot modify header information - headers already sent by...] Any workaround for this? Thanks for help! Keith -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Error when execute header('location: otherpage.php') after email been sent out. Any Workaround?

2009-08-28 Thread Keith
logged. Which format should I used for log file? *.log or *.txt? Since I'm using third party web hosting, I can only access web directory, should I use [http://domain.com/log/logfile.*] or [C:\some_path\domain.com\log\logfile.*] or just [/log/logfile.*]? Thanks! Keith "Floyd Resler&quo

Re: [PHP] Re: Best way to test for form submission?

2009-08-28 Thread Keith
n. I don't know why or in what condition that pressing [ENTER] will not submit the whole form include the $_POST['submit']. Keith "Ashley Sheridan" wrote in message news:1251467419.27899.106.ca...@localhost... On Thu, 2009-08-27 at 23:21 -0400, Adam Jimerson wrote: O

Re: [PHP] Error when execute header('location: otherpage.php') after email been sent out. Any Workaround?

2009-08-28 Thread Keith
./log/logfile.txt where ./log is same level as ./httpdocs, can the web users access it? Thanks! Keith "Ashley Sheridan" wrote in message news:1251477059.27899.117.ca...@localhost... On Fri, 2009-08-28 at 09:28 -0700, Ben Dunlap wrote: > Which format should I used for log f

[PHP] session.gc_ : maxlifetime vs probability/divisor : which has higher priority?

2010-07-22 Thread Keith
From what I read, the session will remain even after maxlifetime until the next round session garbage clearance. This is fine for me. 1) However, will the garbage clearance delete the session whose maxlifetime not reach yet? 2) maxlifetime is referrenced to most recent script execution time whic

[PHP] Error on Signing & Encrypting PayPal Website Payment Button with openssl_

2010-07-24 Thread Keith
. PayPal also told me that it is my encryption error. Please kindly advice on the code below. Thanks! Keith ___ //$buttonParams is key=value pair string with \n separation between each key=value pair $mypub = '

[PHP] intermittent problems using ftp_get ...Help!

2004-04-13 Thread Keith
Hi all Can anyone tell me what would cause intermittent problems downloading files using ftp_get. I have a php file that regularly connects to a number of servers in turn using php's (ftp functions) and downloads files using ftp_get(...). This usually works but often it just fails to download a fi

Re: [PHP] intermittent problems using ftp_get ...Help!

2004-04-13 Thread Keith
Hi Red Thanks, I had wondered about connection limitations, but frankly I'd be surprised if that were the problem. But as we are on this subject, I use proftpd and the MaxClients value is not set yet. As I understand it I can set MaxClients to 'none' which removes any maximum restriction. But what

Re: [PHP] intermittent problems using ftp_get ...Help!

2004-04-13 Thread Keith
Well the servers do indeed have firewalls! But why would this be intermittent and how can I get around this WITHOUT removing the firewall :) Thanks K "Raditha Dissanayake" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Keith wrote: > > >Hi all > >

Re: [PHP] intermittent problems using ftp_get ...Help!

2004-04-13 Thread Keith
But that's just it , I am using ftp_pasv($idconn, true) and yes I have placed it after the connection and login statement. Any other ideas? K "Curt Zirzow" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > * Thus wrote Keith ([EMAIL PROTECTED]): > > W

[PHP] URL Rewrite???

2006-06-13 Thread Keith
Hi all Not really a php issue per se - sorry. But I'm sure someone here is bound to know the answer. :-) I have a main site that is accessible at say "http://www.somedomain.com/somedir/"; but I want visitors to be able to access the site using simply "http://www.somedomain.com"; AND for the re

Re: [PHP] Confirm message box

2002-11-27 Thread Keith Sauvant
pt.php" can delete the record. Good luck Keith -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Problem uploading files other than text/plain ones

2002-12-02 Thread Keith Sauvant
You know about the php.ini option "upload_max_filesize"? Perhaps its default value is not enough for your task? Greeting from Keith Aachen, Germany -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Whimper, help :)

2002-12-04 Thread Keith Sauvant
> Like I said, I can run the same SQL in PHPMyAdmin... Be careful when testing SQL statements containing (double)quotes in PHPMyAdmin, as I remember, it automatically masks them! Try the same statement on mysqls commandline. Good luck Keith -- PHP General Mailing List (http://www.php.net/)

[PHP] LOGOUT - Reset Session

2003-01-30 Thread Keith Spiller
Hello Everyone, I'm trying to create a Logout Function and Link. My site uses a standard htaccess file for its authentication method. After the brower requests the username and password they have access to the protected site. Then users can jump to a special Messaging section where I wrote a ph

[PHP] short_open_tags = On

2003-03-04 Thread Keith Mastin
ly show any. :) The server is on the web and has a number of domains. The user in question writes a lot of websites using php for maybe 1/2 of the domains. TIA -- Keith Mastin BeechTree Information Technology Services Inc. Toronto, Canada (416)696-6070 -- PHP General Mailing List (htt

RE: [PHP] text area question

2003-08-22 Thread Keith Higgs
ll be ignored by the browser's rendering engine. The suggested correction DOES do a lot for programming style by eliminating the superfluous space, and the possibility that you may introduce errors by inserting other code in that area. D. Keith Higgs <mailto:[EMAIL PROTECTED]> 216-368-05

[PHP] Apache to compile PHP and Ruby languages in the same document?

2003-06-11 Thread Keith Hamilton
Hello, I'm trying to create one document with PHP and Ruby scripts in the same document. Is this possible? I've tried to configure mod_ruby to compile php documents as well but when I do that PHP doesn't work. Is it possible to have 2 languages in the same document? --

[PHP] Exploding Zip Codes! (Using PHP's explode function)

2002-08-12 Thread Keith Posehn
I have a huge block of zip codes I need to seperate into their constituent parts for a query of a database. The block looks like this (in part): | 36310 ABBEVILLE | | 35440 ABERNANT | | 35005 ADAMSVILLE | | 35540 ADDISON | | 35006 ADGER | | 35441 AKRON | I need to use eplode (p

[PHP] [Followup] Exploding Zip Codes! (Using PHP's explode function)

2002-08-13 Thread Keith Posehn
Final question on this (I hope). I have the code together now to put it all the zip codes into and array--but now I need to add those zip codes to a sql statement for the WHERE clause. Example: SELECT * FROM [table] WHERE zip="[all the darn zips listed here]" (or something like that) How would

Re: [PHP] Are sessions affected by Unix user changes?

2002-08-28 Thread Keith Soares
To clarify, session files ARE being created still, but they all have a length of 0. So it seems that the permissions to create a file are ok, but something else is wrong. Any idea why the file could be created, but would be empty? I'm perplexed. K. -- PHP General Mailing List (http://www.php.net

Re: [PHP] SESSION ARRAY

2002-08-29 Thread Keith Vance
$_SESSION is a predefined variable, session_start() session_register('BILLARRAY') should work though :) Keith Vance Vance Consulting LLC www.vanceconsulting.net (206) 355-2399 Try my open source PHP authentication system, Rampart by visiting http://rampart.sourceforge.net/. Commerci

Re: [PHP] Running a PHP script automatically?

2002-09-21 Thread Keith Vance
ht be able to get an RPM that will install the php executable for you. To do the crontab: RUN THIS COMMAND crontab -e TYPE THIS 15,30,45,0 * * * * name_of_your_script THEN ESC :wq Keith Vance Vance Consulting LLC www.vanceconsulting.net (206) 355-2399 Try my open source PHP authentication syste

[PHP] displaying a select number of rows from a sql query

2002-10-09 Thread Keith Posehn
ks for any help you can provide. -Keith Posehn -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: displaying a select number of rows from a sql query

2002-10-10 Thread Keith Posehn
I tried this code, and it still just keeps 'a loopin'... What is wierd is that I have some if the code I tried in my site on other pages, and it functions without a problem...any thoughts? Thanks for the help. -Keith Posehn "Owen Prime" <[EMAIL PROTECTED]> wrote i

Re: Fw: Re: [PHP] Simple HTML-Form Question

2002-10-13 Thread Keith Vance
I would quote get in method="get" and end the for starters. Keith Vance Vance Consulting LLC www.vanceconsulting.net (206) 355-2399 Try my open source PHP authentication system, Rampart by visiting http://rampart.sourceforge.net/. Commercial support is available

Re: [PHP] why can't i do this?

2002-10-16 Thread Keith Vance
Because that's not the way PHP works. You aren't comparing anything on the second half of the elseif statement. Keith Vance Vance Consulting LLC www.vanceconsulting.net (206) 355-2399 Try U.M.A. at http://uma.sourceforge.net/ On Thu, 17 Oct 2002, Peter Houchin wrote: > howdy >

Re: [PHP] explode didn't work well

2002-10-31 Thread Keith Vance
echo ($pieces[2]); instead of echo ($pieces [2]); Keith Vance Vance Consulting LLC www.vanceconsulting.net (206) 355-2399 Try U.M.A. at http://uma.sourceforge.net/ On Thu, 31 Oct 2002, ppf wrote: > > Hi all: > I had tried to split the string into an array of > string using exp

Re: [PHP] explode didn't work well

2002-10-31 Thread Keith Vance
And that too. Keith Vance Vance Consulting LLC www.vanceconsulting.net (206) 355-2399 Try U.M.A. at http://uma.sourceforge.net/ On Thu, 31 Oct 2002, Rasmus Lerdorf wrote: > Because you can't spell pizza, I bet. > > On Thu, 31 Oct 2002, ppf wrote: > > > > > Hi all:

[PHP] Php Form Issue

2002-11-16 Thread Keith Spiller
er=explorer instead of only the last entry? Thanks for any help, Keith

[PHP] Cannot parse html pages in php

2002-07-18 Thread Keith Roberts
I am running into a situation where I need some serious help. My environment is: Workstation - W2k, Frontpage Server - Cobalt RaQ4i, Linux, Apache Problem: I need to access MySQL to display inventory information on the web page. When I have modified the httpd.conf file to parse html files thr

[PHP] Cannot parse html pages in php

2002-07-18 Thread Keith Roberts
I am running into a situation where I need some serious help. My environment is: Workstation - W2k, Frontpage Server - Cobalt RaQ4i, Linux, Apache Problem: I need to access MySQL to display inventory information on the web page. When I have modified the httpd.conf file to parse html files thr

[PHP] php and html

2002-07-18 Thread Keith Roberts
I am running into a situation where I need some serious help. My environment is: Workstation - W2k, Frontpage Server - Cobalt RaQ4i, Linux, Apache Problem: I need to access MySQL to display inventory information on the web page. When I have modified the httpd.conf file to parse html files thr

[PHP] php and html

2002-07-18 Thread Keith Roberts
I am running into a situation where I need some serious help. My environment is: Workstation - W2k, Frontpage Server - Cobalt RaQ4i, Linux, Apache Problem: I need to access MySQL to display inventory information on the web page. When I have modified the httpd.conf file to parse html files thr

[PHP] Form Passed Multidimension Array

2003-09-25 Thread Keith Spiller
Hello, I am trying to find out how to pass a multidimensional array within a hidden input of a form. Would it be something like this? Any advice would be forever appreciated... Keith

[PHP] php "Losing" apache environment vars

2003-11-10 Thread Keith Greene
the actual links that make up the menu. I have never seen this behavior, and was wondering if anyone has seen anything like it before, and possibly found a solution. We are running php 4.3.2, Apache 1.3.26 on FreeBSD 4.5. Any help would be very appreciated. Keith -- PHP General Mailing

Re: [PHP] php "Losing" apache environment vars

2003-11-10 Thread Keith Greene
After restarting apache, the error is gone. Still not sure what was causing it. The site was running fine to begin with, and the environment vars have been in use for over a year throughout the site. Keith At 12:56 PM 11/10/2003, Keith Greene wrote: Greetings list, I have run into a problem

Re: [PHP] What is "white space"

2003-11-15 Thread Keith Greene
It's not a bug. Anything (including spaces, newlines etc) that is not inside is output directly to the browser. At 03:49 PM 11/15/2003, you wrote: Robert Cummings wrote: FYI, if you're woprried about the "header cannot be sent due to output..." error, then if your file only has code and no HTML

Re: [PHP] Re: Alternet row colors

2003-11-15 Thread Keith Greene
It's so much easier to use the mod (%) operator: using the mod operator, you can check if a variable is divisible by some other number without leaving a remainder. For this example, we want to change every other row, so we would compare our $count against 2 to see if it leaves a remainder: $bg =

Re: [PHP] What is "white space"

2003-11-15 Thread Keith Greene
Yep. It allows you to only use php where needed, and use HTML for the rest. At 04:02 PM 11/15/2003, you wrote: On Sat, 2003-11-15 at 18:49, Leif K-Brooks wrote: > Robert Cummings wrote: > > >FYI, if you're woprried about the "header cannot be sent due to > >output..." error, then if your file only

Re: [PHP] What is "white space"

2003-11-15 Thread Keith Greene
interfere with headers. Keith At 04:41 PM 11/15/2003, Leif K-Brooks wrote: Keith Greene wrote: That's not a bug either. Leaving out the ?> is simply telling the php parser that it has to parse the rest of the script. Where's the manual page saying that's allowed? -- The abo

[PHP] PHP & Mysql programmers wanted

2003-11-26 Thread Keith Atkinson
s OK. Please respond to: Keith Atkinson [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Php FAQ, Q&A or Knowledge Base

2001-01-19 Thread Keith Spiller
Can anyone recommend a good FAQ, Q&A or Knowledge Base script written in PHP? Preferably one with an administration section and a queue for questions to be answered. Larentium

[PHP] Join causing Error?

2001-02-25 Thread Keith Spiller
= '1' ORDER BY qorder",$db); Works perfectly? Keith Spiller a.k.a. Larentium

[PHP] Get text between

2001-03-05 Thread Keith Mayo
I need some help with a program, I need to get every instance of text between GET TEXT HERE and save the results in a variable. Does anyone have some example code of how to do it along with how to put the results into just one variable? __ Do Yo

[PHP] create a directory NOT owned by the webserver user

2001-03-09 Thread Keith Vance
this one. I am running the latest everything, PHP and Apache on Linux of course. Keith -- PHP General 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]

Re: [PHP] Advanced PHP

2001-03-09 Thread Keith Vance
What came first the chicken or the egg? Keith On Fri, 9 Mar 2001, Kath wrote: > Yeah. I even see some PHP book authors, like Julie Meloni here on this > list. > > There is never a question, no matter how retarded, that this list or #php on > irc.openprojects.net has never been

RE: [PHP] Advanced PHP

2001-03-09 Thread Keith Vance
Where did the chicken come from, God? Keith On Fri, 9 Mar 2001, Jerry Lake wrote: > The chicken did. > > as the Chicken is an actual chicken > and the egg is a potential chicken. > Actuality precedes potentiality > > Jerry Lake- [EMAIL PROTECTED] &g

RE: [PHP] Advanced PHP

2001-03-09 Thread Keith Vance
d to other possibilities. Keith On Fri, 9 Mar 2001, Rick St Jean wrote: > Of course... where did you think they came from... monkeys? > > > > At 04:01 PM 3/9/01 -0800, Keith Vance wrote: > >Where did the chicken come from, God? > > > >Keith > > > >On Fri,

RE: [PHP] Advanced PHP

2001-03-09 Thread Keith Vance
Just for the record, the theory evolution doesn't say that "every" living creature evolved from monkeys, just as silly humanoids. I would like to apologize to everyone on the list for creating the discussion, it's a wee bit off topic. Keith On Fri, 9 Mar 2001, Jeff Oien wr

Re: [PHP] exist?

2001-03-14 Thread Keith Vance
You must not have searched to hard on the site, http://www.php.net/file_exists Keith On Wed, 14 Mar 2001, Kenneth R Zink II wrote: > How would I go about checking to see if a file exist from php? > > I didn't find anything on php.net when I did a search for exist. > > basi

Re: [PHP] How upload files to protected directories?

2001-03-14 Thread Keith Vance
fine. There is also some good stuff about this on http://www.phpbuilder.com. I do it all the time and my hosting company couldn't care less, but your's may be different and you may have to switch or should switch to someone else if you can't get the http upload to work. Keith On W

Re: [PHP] How upload files to protected directories?

2001-03-15 Thread Keith Vance
Can you set, in your script, where the files are uploaded so that the files can be uploaded into a directory that allows you to do a copy. Keith On Wed, 14 Mar 2001, Mig wrote: > Keith Vance wrote: > > > You should be able to do something using PHP, try looking here, > >

Re: [PHP] POST Method.

2001-03-15 Thread Keith Vance
e values in the url or a session variable or hidden fields in another form. Keith On Thu, 15 Mar 2001, Nick Davies wrote: > > How do i forward POST data from a php script. Obviously GET is simple > (just script.php?$QUERY_STRING) but how does it work with post? > > > Thanks.

Re: [PHP] php editors

2001-03-15 Thread Keith Vance
I think this discussion just took place, try searching the mailing list archives for "good php editor" Keith On Thu, 15 Mar 2001, McShen wrote: > I am looking for good php editors. Currently, i am using PHP coder. It > highlights syntax and checks my syntax. It's also

RE: [PHP] Help! Can't redeclare already declared function in

2001-03-15 Thread Keith Vance
how about if (!$included[filename]) On Thu, 15 Mar 2001, ..s.c.o.t.t.. [gts] wrote: > try using include_once() and require_once() > in place of include() and require() > > also, make sure you havent defined any functions > that match PHP internal funcs. > > > > -Original Message- > > F

RE: [PHP] Re: How do you keep your scripts secure?

2001-03-15 Thread Keith Vance
The Zend encoder seems cool, but for $2400? What happened to the Zend Compiler, is that what the Zend Encoder is? The Zend Encoder would definetly be worth it if you were selling your code, but I haven't tried it out. Keith On Thu, 15 Mar 2001, ..s.c.o.t.t.. [gts] wrote: > sinc

Re: [PHP] I can't install PHP4

2001-03-15 Thread Keith Vance
make a file called, test.php with these lines in it: stick it into your web server directory and point a browser at it, if it doesn't work send error messages. Keith On Thu, 15 Mar 2001, Norberto Rojas wrote: > Hi: > >I've trying to install PHP4 without good resul

Re: [PHP] How do you keep your scripts secure?

2001-03-15 Thread Keith Vance
"... hate to think that someone could come along and just use it all for free" So you don't really care to contribute to the Open Source community? We would love to have your passwords. I would highly recommend setting an include path outside the web server document root and store you files with p

Re: [PHP] FAQ

2001-03-15 Thread Keith Vance
How many times are people going to complain about no-brainer questions being posted to the list. The fact of the matter is people are going to post things on the list without reading the manual or the FAQ. It goes with the territory. It annoys me too, but there is no good solution for the problem.

RE: [PHP] FAQ

2001-03-16 Thread Keith Vance
I agree with everything you have said. I just don't think there is a good way to get people from asking these types of questions, without someone sitting there reading every message and filtering them according to topic. We are stuck with a high-volume list where lots of newbies come to ask us que

Re: [PHP] Trouble Setup !!!!!!!!!

2001-05-02 Thread Keith Elder
Another good place that explains how to roll your own is: http://www.fluidthoughts.com/howto/config-webserver/ Keith * Andrew Hill ([EMAIL PROTECTED]) wrote: > Date: Wed, 2 May 2001 20:00:37 -0400 > From: Andrew Hill <[EMAIL PROTECTED]> > Cc: [EMAIL PROTECTED], [EMAIL PROTECTE

[PHP] PHP Training Course Offered - June 25th

2001-05-03 Thread Keith Elder
. Keith Elder Phone: 734-482-1371 Toll Free: 866-745-3660 Email: [EMAIL PROTECTED] Web: http://www.tapinternet.com -- PHP General 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

Re: [PHP] multiline text areas and mysql doesn't work :(

2001-05-13 Thread Keith Ng
e field appears on 1 line. > Any ideas how to get it to store the control chars? > -Ciaron Use nl2br() to format the display properly in HTML. Goto www.php.net/nl2br for more info. So this would work well: Updating the record works because you probably did something like this: Rega

[PHP] PDF

2001-05-16 Thread Keith Ng
hanks very much. Regards, Keith Ng ___ Senior Web Developer K-Systems & Services [EMAIL PROTECTED] http://www.k-systems.com.sg/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROT

Re: [PHP] How can I enable magic_quotes_gpc without editing PHP.ini

2001-05-16 Thread Keith Ng
- > Phone: (+354) 4615501 > Mobile: (+354) 8960376 > Fax: (+354) 4615503 > E-mail: [EMAIL PROTECTED] > Homepage:www.sed.is <- New Homepage! > -- set_magic_quotes_runtime(); Regards, Keith Ng ___

[PHP] Barcode in PDF.

2001-05-17 Thread Keith Ng
Hi, Does anyone know how to go about drawing a barcode in PDFLIB? Regards, Keith Ng ___ Co-founder K-Designs Incorporated [EMAIL PROTECTED] http://www.k-designs.com.sg/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED

Re: [PHP] Parse error..help!

2001-05-18 Thread Keith Ng
> $NL = (\n); > $H = getLastHost(); > $R = getLastRef(); > $To = "[EMAIL PROTECTED]"; > $Sub = "Page Accessed"; > $D = Date("D d M y h:ia",time()); > $Msg = $H + $NL + $R + $NL + $D; > m

Re: [PHP] Parse error..help!

2001-05-18 Thread Keith Ng
> $NL = (\n); > $H = getLastHost(); > $R = getLastRef(); > $To = "[EMAIL PROTECTED]"; > $Sub = "Page Accessed"; > $D = Date("D d M y h:ia",time()); > $Msg = $H + $NL + $R + $NL + $D; > mail

[PHP] unhandled exception processing the ISAPI

2002-05-12 Thread Keith AY
suddenly shutdown. The follow error occur: The HTTP server encountered an unhandled exception while processing the ISAPI Application ' php4ts!zend_strndup + 0x2B + 0xA05E5983 and I have to reboot the system because IIS won't work!!! Would u please give me some help or advice? thx!!!!

[PHP] Finding Hostname of Browser Client.

2002-02-22 Thread Keith Sloan
i.e. Dynamically allocated IP address. I suspect that his ISP is not going to resolve an address to such a machine. Any ideas ? Thanks Keith -- Keith , Jenny & Family Sloan [EMAIL PROTECTED] http://web.ukonline.co.uk/keith.sloan/ -- PHP General Mailing List (http://www.php.net/

[PHP] Re: mail() & getenv() problems (after 4.1.2 update)...

2002-03-08 Thread Keith Waters
I'm having the same problem - I've been using the mail() command for quite some time now and it's been working 100% and executing immediately. Suddenly, this morning, it is taking about 60 seconds to send mail, delaying the display of the php web page by that same amount of time. I have checked

[PHP] Re: mail() & getenv() problems (after 4.1.2 update)...

2002-03-11 Thread Keith Waters
ble-quotes! Keith "Keith Waters" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I'm having the same problem - > > I've been using the mail() command for quite some time now and it's been > working 100% and executin

[PHP] Curl output to an array -- HELP!!

2002-03-19 Thread Keith Posehn
e=APPROVED ssl_txn_id=---- ssl_approval_code=00 I need each of the lines to be turned into a variable. Any ideas as to how I might go about this? Thanks, Keith Posehn -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://w

[PHP] Curl output to an array -- HELP!! -- Appended

2002-03-19 Thread Keith Posehn
s to how I might go about this? Thanks, Keith Posehn -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] php, pdf's and restricting access

2002-04-03 Thread Keith Posehn
make a php page that would actually view the files as a specific user? Is there some way to include a pdf file in the page? Any ideas appreciated. Keith Posehn -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] session variables between http and https servers.

2002-04-10 Thread Keith Posehn
. Thanks! Keith -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] pages will not refresh publically

2001-12-02 Thread Keith Kwasigroch
I have a W2k box setup with IIS and PHP. It works fine, well almost. I can create a .php page and it works great. But, when I edit that page, the old page still shows up pubically. The page is updated if I open it from within the private network. For instance: www.domain.com displays old pag

[PHP] Turn-key output compression support in 4.1.0

2001-12-11 Thread Keith Waters
Hi All - I see this feature mentioned in the release notes - It could be a nice alternative to mod_gzip if it is what I think it is, but there doesnt seem to be any documentation on it. Does anybody out there have an idea? Regards, Keith -- PHP General Mailing List (http://www.php.net/) To

Re: [PHP] Header Problem

2001-03-21 Thread Keith Vance
What happens when it doesn't work, any error messages? Try: header ("Location: http://www." . $URL . "/members/index.php"); or $loc = "Location: http://www." . $URL . "/members/index.php"; header ($loc); The first suggestion should work. K E I T H V A N C E Software Engineer n-Link Corporatio

  1   2   >