[PHP] RE: [PHP-WIN] 5.3.9RC2 and 5.4RC2

2011-11-27 Thread Keith Davis
Thanks Pierre! And thanks Tommy for bringing that up. I've been discussing the Wincache issue for some time and also brought it up with the new MS person assigned to it, but I had completely forgot to check sqlsrv and that would have been a big problem for us. Keith Davis (214) 906-5183

[PHP] RE: [PHP-WIN] 5.3.9RC2 and 5.4RC2

2011-11-27 Thread Keith Davis
Well, she is new to Wincache at least: Jenny Lawrence http://forums.iis.net/t/1174639.aspx Keith Davis (214) 906-5183 -Original Message- From: Pierre Joye [mailto:pierre@gmail.com] Sent: Sunday, November 27, 2011 6:20 PM To: Keith Davis Cc: Tommy Pham; php-general@lists.php.net

[PHP] Up to date book on PHP security?

2011-11-11 Thread Keith Purtell
As a PHP newbie, I was advised to get a book by Chris Shiflett titled Essential PHP Security. I looked at Amazon.com but the book appears to be more than five years old. Should I get something more up to date? - Keith -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

[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 = 'file

[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

[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
, 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 fres...@adex-intl.com wrote in message news:a536e452-54a2-4f55-8ae0-28e875a59...@adex-intl.com... Another solution

[PHP] Re: [PHP-WIN] Re: [PHP] Problem outputting MySQL Date field

2009-08-28 Thread Keith Davis
But how are you getting the data from the db? Does $rowqry represent a call using the mysql_fetch_array() function? Sent from my magic iPhone, Keith Davis 214-906-5183 On Aug 28, 2009, at 7:39 PM, John Meyer johnme...@pueblocomputing.com wrote: Devendra Jadhav wrote: No need to do

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

2009-08-28 Thread Keith
that pressing [ENTER] will not submit the whole form include the $_POST['submit']. Keith Ashley Sheridan a...@ashleysheridan.co.uk wrote in message news:1251467419.27899.106.ca...@localhost... On Thu, 2009-08-27 at 23:21 -0400, Adam Jimerson wrote: On 08/27/2009 11:09 PM, Adam Jimerson wrote

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 a...@ashleysheridan.co.uk 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

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

2009-08-27 Thread Keith
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.net/) To unsubscribe, visit: http://www.php.net

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

2009-08-27 Thread Keith
: 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 invalid email address. I've

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

2009-08-24 Thread Keith
news: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 readably

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

2009-08-22 Thread Keith
...@mail.gmail.com... 2009/8/20 Keith survivor_...@hotmail.com: 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

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

2009-08-22 Thread Keith
! Keith $sum=0; switch($sum) { case ($sum==8): echo sum=8; break; case ($sum==7 || $sum==6): echo sum=7 or 6; break; case ($sum==2 || $sum==1): echo sum=2 or 1; break; case 0: echo sum=0; break; default: echo sum=3/4/5; break; } -- PHP General Mailing

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

2009-08-22 Thread Keith
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, August 20, 2009 11:20 PM To: Keith Cc: php

[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; switch($sum

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

2009-06-10 Thread Keith
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['order'] submitted by user B, and the both user A B

[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 p...@justcroft.com 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.php'. (1) Will $_POST

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

2009-06-09 Thread Keith
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] PHP LDAP over SSL problems (SOLVED)

2009-04-08 Thread Keith Lawson
On Fri, Apr 3, 2009 at 10:16 AM, in message 49d5e20c.8302.00a...@sjhc.london.on.ca, Keith Lawson keith.law...@sjhc.london.on.ca wrote: On Thu, Apr 2, 2009 at 5:51 PM, in message 49d53344.7040...@gmail.com, Chris dmag...@gmail.com wrote: Keith Lawson wrote: Hello, I have been

Re: [PHP] PHP module ignores ldap.conf (SOLVED)

2009-04-08 Thread Keith Lawson
On Mon, Apr 6, 2009 at 7:02 PM, in message 49da8a1b.5070...@gmail.com, Chris dmag...@gmail.com wrote: Keith Lawson wrote: Hello, I'm trying to connect to and LDAP server using PHP over SSL. I compiled Openldap from source, installed it and then compiled PHP against that install. I

[PHP] PHP module ignores ldap.conf

2009-04-06 Thread Keith Lawson
' '--enable-sockets' '--with-jpeg-dir=/usr' '--enable-gd-native-ttf' '--with-freetype-dir=/usr/sfw' '--with-gdbm=/opt' '--with-png-dir=/usr' TIA Keith. The information transmitted is intended only for the person

Re: [PHP] PHP LDAP over SSL problems

2009-04-03 Thread Keith Lawson
On Thu, Apr 2, 2009 at 5:51 PM, in message 49d53344.7040...@gmail.com, Chris dmag...@gmail.com wrote: Keith Lawson wrote: Hello, I have been working on this problem for some time now and I can't seem to resolve it. Everything I have found on google and php.net says I can connect

[PHP] PHP LDAP over SSL problems

2009-04-02 Thread Keith Lawson
/etc/openldap/ldap.conf, O_RDONLY) = 4 Any idea why the same code served by apache would ignore the TLS_REQCERT setting?! TIA Keith The information transmitted is intended only for the person or entity to which

[PHP] mysql_query() vs query_database()

2008-10-01 Thread Keith Spiller
Hi, RE: mysql_query() vs query_database() What is the differences between mysql_query and query_database? Are both compatible with PHP 5 and MySQL 5? Is one faster than the other? Thank you for your help. Keith

[PHP] Restore Leading Zeros in Zip Codes

2008-08-21 Thread Keith Spiller
Hi, RE: Restore Leading Zeros in Zip Codes Does anyone happen to have a script that will restore the leading zeros in a mixed data set of 5 digit zip codes and 10 digit zip+4 codes? Any suggestions? Thanks, Keith

Re: [PHP] regex

2008-01-21 Thread Keith Roberts
Can yo upost the code you have got to do the conversion so far please? Regards Keith - Websites: http://www.karsites.net http://www.php-debuggers.net http://www.raised-from-the-dead.org.uk All email addresses are challenge

Re: [PHP] regex

2008-01-21 Thread Keith Roberts
/manual/en/language.types.string.php#language.types.string.syntax.heredoc HTH Keith Roberts - Websites: http://www.karsites.net http://www.php-debuggers.net http://www.raised-from-the-dead.org.uk All email addresses are challenge

[PHP] New website dedicated to debugging PHP.

2008-01-20 Thread Keith Roberts
, or debugger GUI for your OS. * Post details of Open Source PHP Debugger Projects that need more help, or a new maintainer for the project. To suggest other OS categories, more PHP debugger GUI's, or improvements to the website, please see the contact page. Kind Regards and Best Wishes, Keith

[PHP] RE: [Updated] Previous and Next Month and Year

2007-06-18 Thread Keith Spiller
: July 2007 And needs to bear in mind the year... The phpcalendar script is working perfectly with my own next and prev month links using $month +1 and $month -1. So I am trying to get my Event boxes to work in the same way listing the previous month, current month and next month. Thanks, Keith

Re: [PHP] Re: Previous and Next Month and Year

2007-06-17 Thread Keith Spiller
December 2006 The $prev_month value seems correct, but the $next_month value should be: December 2008 Do you see my mistake? Keith - Original Message - From: Vlad Vlasceanu [EMAIL PROTECTED] To: php-general@lists.php.net Sent: Sunday, June 17, 2007 12:13 AM Subject: [PHP] Re

[PHP] Appending to an Array

2007-06-16 Thread Keith Spiller
error. Any ideas? Thanks for your help... Keith -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Appending to an Array

2007-06-16 Thread Keith Spiller
Awesome Vlad. You fixed it with your second example perfectly! Thank you so much. Keith - Original Message - From: Vlad Vlasceanu [EMAIL PROTECTED] To: php-general@lists.php.net Sent: Saturday, June 16, 2007 10:43 PM Subject: [PHP] Re: Appending to an Array

[PHP] Previous and Next Month and Year

2007-06-16 Thread Keith Spiller
based upon a + or - $month value. The variable $month being 6 for the month of June of the present year of 2007. For example ($month -7) would be December 2006, and ($month +7) would be January 2006. Please help... Thank you. Keith -- PHP General Mailing List (http://www.php.net

Re: [PHP] Sorting Multidimensional Array

2006-10-31 Thread Keith Spiller
the current month... If I could add the record to the Select statement as you suggest that would be wonderful. Keith - Original Message - From: Richard Lynch [EMAIL PROTECTED] To: Keith Spiller [EMAIL PROTECTED] Cc: php-general@lists.php.net Sent: Tuesday, October 31, 2006 10:48 AM

[PHP] Sorting Multidimensional Array

2006-10-31 Thread Keith Spiller
is the forth field... Something like: $test = array_multisort($query, $key = '$query[4]'); Any help would be greatly appreciated. Thanks, Keith -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Manually Inserted Row

2006-10-31 Thread Keith Spiller
'9', 'No events exist for this month...', '', '', '', '-00-00', '00:00:00', '', '', '', '', '', '', '1', 'BOX', 'EOG', '', '', as z ) WHERE Board='BOX' AND Committee='EOG' ORDER BY z This fails. Any ideas how I can fix this manually inserted row? Thanks, Keith -- PHP General

[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: [PHP] Re: php4 vs. php5

2006-02-02 Thread Keith Proctor
class and in the string class and there doesn't seem to be something to help. I, of course, could write something to handle it but I would prefer to use something built in. Any help would be appreciated. Thanks, Keith -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

[PHP] chown function

2005-10-03 Thread Keith Spiller
Hello, I'm using: chown($endpath, admin); to try to change the owner of directories after using mkdir() to create them. It continues to fail on my remote Fedora server. I know the path is correct because mkdir() works perfectly. Apache sets the owner as 48 when the directory is created. I am

Re: [PHP] chown function

2005-10-03 Thread Keith Spiller
directories end up as 755. Yeah I have a feeling that you are right, that apache on my server does not have chown permissions. Thank you very mych for your help. Keith - Original Message - From: Jasper Bryant-Greene [EMAIL PROTECTED] To: php-general@lists.php.net Sent: Monday, October 03, 2005

Re: [PHP] placing values in html teaxtarea

2004-07-12 Thread Keith Greene
textareas do not use the value attribute. instead, the value is placed between the textarea/textarea tags: textarea name=zoutput rows=20 cols=70 wrap /? echo $test; ?/textarea At 08:09 AM 7/12/2004, Hull, Douglas D wrote: After doing calculations etc on my data I am wanting to place it in a

Re: [PHP] OO woes

2004-07-12 Thread Keith Greene
$query = 'INSERT into aeMail set test=\''.$_POST[test].'\''; Your quotes look screwy to me. You seem to be missing both trailing single quotes. try this: $query = 'INSERT into aeMail set test=\'''.$_POST[test].'\'''; At 01:07 PM 7/12/2004, Matthew Sims wrote: PHP version 5.0.0RC3 (cgi) (built:

[PHP] Common MySQL database function class

2004-07-08 Thread Keith Lawrence
help. I've searched extensively for something like this but haven't found one that does exactly what I want. Am I re-inventing the wheel here? Does anyone else who works on multiple platforms have these problems? Many thanks (in advance) for any help, Regards, Keith http://www.pi-squared.co.za

Re: [PHP] Malicious SQL

2004-07-07 Thread Keith Greene
For example, if you are not quoting your criteria: sql = mysql_query(select * from users where name=.$name); if someone enters the following in the name field, you're toast: Jim; delete from users; on the contrary: sql = mysql_query(select * from users where name='.$name.'); will simply look for a

Re: [PHP] binary data over UDP with PHP?

2004-07-07 Thread Keith Greene
); # Send trigger to the status server $junk = fread($fp, 4); # discard echoed command from status server } Keith At 04:23 PM 7/7/2004, coder_1024 wrote: I'm trying to send some binary data to a UDP server using PHP. The examples I've been able to find show

Re: [PHP] images outside of document root

2004-07-06 Thread Keith Greene
for an hour, and only for people who have actually visited my site during their current browser session, and this I can live with. Keith At 01:20 PM 7/6/2004, Dennis Gearon wrote: I may do that, but the 'showimage.php' file then has to be in the document root, and can be attacked a LOT. I have

Re: [PHP] include question

2004-06-21 Thread Keith Greene
are not available to the function. Are you getting any error messages at all? Keith At 08:31 AM 6/21/2004, Aaron Axelsen wrote: Below is the chunk of code i am using. In the verify_faculty_info.php file i call the search function. The search function is coded in the function.php file which

[PHP] Problem with mail()

2004-06-17 Thread Keith Aldridge
. Thanks in advance, Keith mailto:[EMAIL PROTECTED]

Re: [PHP] Re: What's this

2004-06-17 Thread Keith Greene
/subsilver/memberlist_body.tpl, the definition for that constant would probably be found in /memberlist.php, like this: 'S_MODE' = append_sid(memberlist.$phpEx)) Hope this helps. Keith At 05:30 AM 6/17/2004, Pieter from SA wrote: This type of action is used in a lot of files in PHPbb. I need

RE: [PHP] src=test.php

2004-06-16 Thread Keith Greene
I don't think there is a standard for the extensions of these files. In fact, this page: http://www.w3c.org/TR/CSS1#basic-concepts uses a url of http://style.com/cool; as an example of an external style sheet. Also, I use a .php file as a javascript include on my site. The script is included on

[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

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 Can anyone tell me what would cause

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]): Well the servers do indeed have firewalls

[PHP] Problem uploading large files via PHP (20+ MB)

2004-03-19 Thread Schonrock III, Keith H
help is greatly appreciated! Thanks, Keith -Sending php file: html body center bThis is a test document/b p form enctype=multipart/form-data action=upload2.php method=post Send this file: input name=userfile type=file / input type=submit value=Send File / /form /body /html -Receiving php

Re: [PHP] Problem uploading large files via PHP (20+ MB)

2004-03-19 Thread Schonrock III, Keith H
increase the configured timeout period? As I stated before, when I go to the Control Panels-Administrative Tools-Internet Information Services and look at the Properties for my Default website the connection timeout is set to 900 seconds. Thanks, Keith Vincent DUPONT wrote: DNS error seems

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

2003-12-11 Thread Keith
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] 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

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

2003-12-04 Thread Keith
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] PHP Mysql programmers wanted

2003-11-26 Thread Keith Atkinson
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 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 wanted to make a session last for 1

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 ? and ? 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

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 has

Re: [PHP] What is white space

2003-11-15 Thread Keith Greene
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 above message is encrypted

[PHP] php Losing apache environment vars

2003-11-10 Thread Keith Greene
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 List (http

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

[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? input type='hidden' name='all_links' value='$all_links' Any advice would be forever appreciated... Keith

RE: [PHP] text area question

2003-08-22 Thread Keith Higgs
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-0559 Case Western

[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? -- Keith -- PHP

[PHP] short_open_tags = On

2003-03-04 Thread Keith Mastin
. :) 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 (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

[PHP] Re: Forms

2002-12-10 Thread Keith D Sellars
the form (using the action attribute), to the page to which the data is to be directed. Thanks, Keith D Sellars WebGraffix www.webgraffix.com Making database sites seem easy - Original Message - From: Beauford.2002 [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Wednesday

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

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] Confirm message box

2002-11-27 Thread Keith Sauvant
will be followed after a positive conformation, myscript.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

[PHP] Php Form Issue

2002-11-16 Thread Keith Spiller
the last entry? Thanks for any help, Keith

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 explode

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: I had tried to split the string

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 can some one

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

2002-10-13 Thread Keith Vance
I would quote get in method=get and end the /form 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 at, http

[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 in message [EMAIL PROTECTED]"

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

2002-10-09 Thread Keith Posehn
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

Re: [PHP] Running a PHP script automatically?

2002-09-21 Thread Keith Vance
(Debian rocks), you might 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

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/. Commercial support

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

[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

[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

[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

[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

[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

[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

[PHP] unhandled exception processing the ISAPI

2002-05-13 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 Keith AY

[PHP] php, pdf's and restricting access

2002-04-03 Thread Keith Posehn
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] Curl output to an array -- HELP!!

2002-03-19 Thread Keith Posehn
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://www.php.net/unsub.php

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

2002-03-19 Thread Keith Posehn
, Keith Posehn -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

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

2002-03-11 Thread Keith Waters
! 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 executing immediately. Suddenly, this morning, it is taking about 60

  1   2   >