Re: [PHP] Problem with sessions

2003-02-18 Thread Larry E. Ullman
(with the session ID) is being shared by the two windows of your one Mozilla browser. Hence the confusion. Larry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Wrong version displayed after upgrading to php-4.2.3

2003-02-18 Thread Larry E. Ullman
and what test or steps do I need to perform to correct this? I suspect the previous PHP installation is still cached. Do a make distclean or remove the config.cache file before you configure/make. Larry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

Re: [PHP] Date and time problem

2003-02-02 Thread Larry E. Ullman
echo date (l dS of F Y h:i:s A); However, I need to add 12 hrs to this date befor displaying on the webpage. Can someone please help me to modify the above code? $t = time() + (12 * 60 * 60); echo date (l dS of F Y h:i:s A, $t); Larry -- PHP General Mailing List (http://www.php.net

[PHP] MySQL - setting relationships

2003-01-30 Thread Larry E. Ullman
to constrain foreign keys unless you're using the InnoDB table type. This will change in later versions of MySQL. For the time being, you can still create your database as you otherwise would and perform a join across the tables. Larry -- PHP General Mailing List (http://www.php.net

Re: [PHP] PHP and Oracle

2003-01-23 Thread Larry E. Ullman
and the cause was lots of phantom Oracle connections left open. So it wasn't PHP or Apache but connecting to the database which slowed things down. That may not be your problem but it's worth looking into... Larry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

[PHP] dreading OOP

2003-01-21 Thread Larry Brown
would be greatly appreciated! Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] dreading OOP

2003-01-21 Thread Larry Brown
it use OOP based consepts to exlain what is happening. And this is one example. Don't let me go into the Java and Javascript world! Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -Original Message- From: Johnson, Kirk [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 21, 2003 10:40 AM

RE: [PHP] Re:[PHP] dreading OOP

2003-01-21 Thread Larry Brown
Thank you, I'll check this book out. Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -Original Message- From: Sukrit [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 21, 2003 12:39 PM To: [EMAIL PROTECTED] Subject: [PHP] Re:[PHP] dreading OOP Larry == Larry Brown [EMAIL

Re: [PHP] Time code!!!

2003-01-20 Thread Larry E. Ullman
does anyone have the code to where i can have the time printed on my home page like for example  Monday, January 19, 2003 The PHP Manual has this code, under the date() function (www.php.net/date). echo date (l, F j, Y);  also I want to have it state when the users login in it says welcome

RE: [PHP] PHP Encoders and GPL License

2003-01-19 Thread Larry Brown
the license. Is this accurate? Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -Original Message- From: Zeev Suraski [mailto:[EMAIL PROTECTED]] Sent: Sunday, January 19, 2003 6:40 AM To: [-^-!-%- Cc: PHP general list Subject: Re: [PHP] PHP Encoders and GPL License At 02:45 18/01

Re: [PHP] Can I use white spaces?

2003-01-19 Thread Larry E. Ullman
I suspect (but could be wrong) that you aren't quoting these values in your forms. Be sure that you are using... input type=text name=name value=quoted value Larry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Can I use white spaces?

2003-01-19 Thread Larry E. Ullman
You where nothing but right. I didn't know that PHP's html HAD to have all of the quoting right for PHP to work properly. Glad it's working but, just to clarify, this is an HTML issue, not a PHP one. Best wishes, Larry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

RE: [PHP] PDF

2003-01-17 Thread Larry Brown
According to pdflib their commercial version gives you the ability to edit pdf files using the PDI library. Have you looked at this? Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -Original Message- From: Brian McGarvie [mailto:[EMAIL PROTECTED]] Sent: Friday, January 17, 2003 7

[PHP] emacs and php markup

2003-01-15 Thread Larry Brown
! TIA Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] session_destroy problem

2003-01-14 Thread Larry Brown
volume site either but for me it should be workable. I hope this helps some. Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] session_destroy problem

2003-01-10 Thread Larry Brown
Javascript has a function for performing actions on window close. You could have a submit action on the page that is sent when the window closes. I've not used it yet but it should work I would think. Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -Original Message- From: Scott

RE: [PHP] checking status of a HTML checkbox

2003-01-10 Thread Larry Brown
but not a value when you submit the form without a value assigned to the variable then isset may not always work. Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -Original Message- From: Shams [mailto:[EMAIL PROTECTED]] Sent: Friday, January 10, 2003 4:36 AM To: [EMAIL PROTECTED] Subject

RE: [PHP] session_destroy problem

2003-01-10 Thread Larry Brown
guys have seen this tried before maybe you already know. Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -Original Message- From: Scott Fletcher [mailto:[EMAIL PROTECTED]] Sent: Friday, January 10, 2003 12:02 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] session_destroy problem Yes

RE: [PHP] session_destroy problem

2003-01-10 Thread Larry Brown
It helps for me being able to re-login as a different user. It's a good idea but it still leaves a bit to be desired for security. I'm going to also post this to the js list and see if they've worked with it before. Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -Original Message

RE: [PHP] checking status of a HTML checkbox

2003-01-10 Thread Larry Brown
can assure you that the form is properly closed on the sending page though. Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of - Edwin Sent: Friday, January 10, 2003 1:00 PM To: Larry Brown; Shams Cc

RE: [PHP] session_destroy problem

2003-01-10 Thread Larry Brown
. Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -Original Message- From: Tamás Árpád [mailto:[EMAIL PROTECTED]] Sent: Friday, January 10, 2003 8:03 PM To: Larry Brown; Scott Fletcher; PHP List Subject: Re: [PHP] session_destroy problem Yes, the JavaScript code can run before

RE: [PHP] Newbee observation

2003-01-09 Thread Larry Brown
Better yet a script should be run to have all the e-mails listed by the time they were received at the server instead of what time the e-mail was submitted. That should take care of it I would think. Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -Original Message- From: Tom Ray

RE: [PHP] newbee

2003-01-09 Thread Larry Brown
then at least show that one variable. If that doesn't work there is some problem with the install I would imagine. Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -Original Message- From: Hendrik van Niekerk [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 09, 2003 12:58 PM To: [EMAIL

RE: [PHP] graph libs

2003-01-08 Thread Larry Brown
is really smooth and I just don't have the time. Thanks to all for suggestions, I still want to look at one other site that was recommended here on the list. Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -Original Message- From: Marek Kilimajer [mailto:[EMAIL PROTECTED]] Sent

RE: [PHP] graph libs

2003-01-08 Thread Larry Brown
the time. Thanks to all for suggestions, I still want to look at one other site that was recommended here on the list. Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Forwarding POST info from a PHP script

2003-01-07 Thread Larry Brown
and I'd have to look up the syntax for that, but it is definitely possible. Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -Original Message- From: David Barrett [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 07, 2003 9:30 AM To: [EMAIL PROTECTED] Subject: [PHP] Forwarding

[PHP] graph libs

2003-01-07 Thread Larry Brown
Can anyone give any suggestions on the best/most intuitive tools or libraries for generating graphs with PHP? Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] restrictions

2003-01-07 Thread Larry Brown
then you should reasonably expect the php to work. Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -Original Message- From: Bruce Levick [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 07, 2003 6:19 PM To: [EMAIL PROTECTED] Subject: [PHP] restrictions I find that my the company

RE: [PHP] Re: Need a suggestion on developing a php-related system

2003-01-07 Thread Larry Brown
of the scripts. I think either way you should store this in your own db. Is this along the lines of what you had in mind? Larry S. Brown Dimension Networks, Inc. (727) 723-8388 On 01/08/2003 03:40 AM, Kelvin Poon wrote: HI, I am new to PHP and I am just wondering if anyone could give me some help

RE: [PHP] frustrating problem

2003-01-06 Thread Larry Brown
how I'd do it. I would imagine you wanted separate tables so that one person could have multiple addresses. Again I might have a typo or two in there. Just to give you an idea. Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -Original Message- From: Matthew K. Gold [mailto

[PHP] web visitor viewing a script?

2003-01-04 Thread Larry Brown
to view the script itself is to have some problem with the web server or have a local login for the server? Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] web visitor viewing a script?

2003-01-04 Thread Larry Brown
Thank you guys for the confirmation and ...yes I got it. :( Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -Original Message- From: Michael J. Pawlowsky [mailto:[EMAIL PROTECTED]] Sent: Saturday, January 04, 2003 8:52 PM To: Larry Brown; [EMAIL PROTECTED] Subject: Re: [PHP] web

[PHP] openssl_csr_sign issues

2002-12-31 Thread Larry
Wondering if anyone else has run into the following problem (or if I'm missing something totally obvious). I've got a program that basically generates a key and certificate for a user who enters all the associated information (common name, passphrase, etc). So I've created a dummy CA cert and key

[PHP] printing documents on printer

2002-12-30 Thread Larry Brown
Does anyone know where I might find specific information on methods of sending documents to a printer from the web server to an attached printer. My PHP and Perl books don't even touch on the capability for some reason. Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -- PHP General

RE: [PHP] printing documents on printer

2002-12-30 Thread Larry Brown
My apologies, this is Linux RH8 to be exact. Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -Original Message- From: John W. Holmes [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 31, 2002 12:05 AM To: 'Larry Brown'; 'PHP List' Subject: RE: [PHP] printing documents on printer

[PHP] running perl script via su

2002-12-21 Thread Larry Brown
as this user. Does anyone know of a quick and dirty solution for this Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] No tshowing url in title bar....

2002-12-21 Thread Larry Brown
Before the body tag you have the head /head tags. Place titleTitle of the page/title and it will show up on the title bar instead of the url. If you want to get rid of the address bar of the browser window, let me know and I can post the javascript for creating that window. Larry S. Brown

[PHP] Problem with the List?

2002-12-21 Thread Larry Brown
Are my posts getting through? They appear to come back on the list but I also get this response... Sorry. Your message could not be delivered to: php-list,emc (The name was not found at the remote site. Check that the name has been entered correctly.) Larry S. Brown Dimension Networks, Inc

[PHP] running perl script via su

2002-12-20 Thread Larry Brown
as this user. Does anyone know of a quick and dirty solution for this Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] window size and setting other properties

2002-12-11 Thread Larry Brown
Does PHP have any commands to set the size of the window to be loaded? For that matter are there any methods for hiding buttons etc. from PHP? Larry S. Brown MCSE Dimension Networks, Inc. (727) 723-8388 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

[PHP] paging through results of mysql query

2002-12-05 Thread Larry Brown
are pulled for each script. Does anyone have a magic bullet for this? This functionality is what I take search engines to be demonstrating. If anyone can help, I could wipe the sweat of my processors brow! (and mine for that matter) Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -- PHP

RE: [PHP] paging through results of mysql query

2002-12-05 Thread Larry Brown
Much Gratefulness on my part! Finally, my server and I can catch our breath. Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -Original Message- From: John W. Holmes [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 05, 2002 12:47 PM To: 'Larry Brown'; 'PHP List' Subject: RE

RE: [PHP] PDF Help Please

2002-12-02 Thread Larry Brown
to modify existing ones. The $1,000. Was there a reason you thought there was some other solution? Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -Original Message- From: Ryan Smaglik [mailto:[EMAIL PROTECTED]] Sent: Monday, December 02, 2002 5:14 PM To: [EMAIL PROTECTED] Subject: [PHP

[PHP] hiding php

2002-12-02 Thread Larry Brown
for the php tags. I thought this would be nice if someone wanted to screw with a site they wouldn't even be trying tools that would apply. However, if you can't run asp on apache nobody would be fooled. Any thoughts? Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -- PHP General Mailing List

RE: [PHP] hiding php

2002-12-02 Thread Larry Brown
Because its better to have someone waste time trying known hacks for a platform I don't have than to have the same person not know the platform and start spending time figuring out what it is right off the bat. Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -Original Message

[PHP] apache httpd-2.0.40-8 and scanning alternate extensions for php

2002-12-01 Thread Larry Brown
know how I can have it scan different extensions? Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] apache httpd-2.0.40-8 and scanning alternate extensions for php

2002-12-01 Thread Larry Brown
That's what I'm saying, there is absolutely no mention of php in httpd.conf. That line does not exist. It does in previous versions of RedHat / Apache. Is it possible that this is some kind of RedHat modification? Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -Original Message

RE: [PHP] apache httpd-2.0.40-8 and scanning alternate extensions for php

2002-12-01 Thread Larry Brown
posting the question. Sorry to have wasted your time. Hopefully someone else will fail to test it first and find my question before posting and save everyone time in the future. Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -Original Message- From: Evan Nemerson [mailto:[EMAIL

[PHP] Disable refresh?

2002-12-01 Thread Larry Brown
Anyone know of a method of preventing a user from refreshing a page. I get multiple updates with the same information in my database... Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

RE: [PHP] Disable refresh?

2002-12-01 Thread Larry Brown
If not, is there a variable that provides information that a refresh occurred to load the page? Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -Original Message- From: Larry Brown [mailto:[EMAIL PROTECTED]] Sent: Sunday, December 01, 2002 8:23 PM To: PHP List Subject: [PHP

RE: [PHP] Disable refresh?

2002-12-01 Thread Larry Brown
the gray matter a little harder next time before asking. Thanks again. Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Sunday, December 01, 2002 8:58 PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re

[PHP] PHP_AUTH_USER failing, please help me...

2002-11-25 Thread Larry Brown
. The php version is 4.2.2 and apache is 2.0.4 (redhat). Larry S. Brown Dimension Networks, Inc. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] RE: PHP_AUTH_USER failing, please help me...

2002-11-25 Thread Larry Brown
Phil, You da man! It just doesn't get any sweeter. Register_globals is off. Thank you, Larry S. Brown Dimension Networks, Inc. -Original Message- From: Philip Hallstrom [mailto:[EMAIL PROTECTED]] Sent: Monday, November 25, 2002 7:40 PM To: Larry Brown Cc: PHP List Subject

RE: [PHP] How do I initialize a page to do something ONCE

2002-11-22 Thread Larry Brown
itself within the last if statement. If the second block is being executed... Did you check out php.net and the comments about session_unset()? If it is not, are you closing the browser between tests? The session information stays open even after leaving the site and coming back. Larry S. Brown

[PHP] Pause for user input?

2002-11-20 Thread Larry Brown
Does anyone know of a method to pause during the processing of a script to prompt a user for information and then incorporate the user's response for the remainder of the script? Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -- PHP General Mailing List (http://www.php.net

RE: [PHP] Pause for user input?

2002-11-20 Thread Larry Brown
to previous questions so I'm trying to keep the number of separate pages to a minimum by using such a technique. I understand that Java can provide this function, but I want to do as much with PHP and as little as possible with Java. Larry S. Brown MCSE President/CEO Dimension Networks, Inc. Member

RE: [PHP] Pause for user input?

2002-11-20 Thread Larry Brown
. Thanks, Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -Original Message- From: @ Edwin [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 20, 2002 2:39 PM To: Larry Brown Cc: [EMAIL PROTECTED] Subject: Re: [PHP] Pause for user input? Larry Brown [EMAIL PROTECTED] wrote

RE: [PHP] Why $ on variable names?

2002-11-12 Thread Larry Rosenman
/unsub.php -- Larry Rosenman http://www.lerctr.org/~ler Phone: +1 972-414-9812 E-Mail: [EMAIL PROTECTED] US Mail: 1905 Steamboat Springs Drive, Garland, TX 75044-6749 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

RE: [PHP] Why $ on variable names?

2002-11-12 Thread Larry Rosenman
--On Tuesday, November 12, 2002 16:53:07 -0500 Jonathan Rosenberg (Tabby's Place) [EMAIL PROTECTED] wrote: In an earlier message, Larry Rosenman [mailto:ler;lerctr.org] said ... How about: That's the way the language designers did it, and there's LOTS of PRODUCTION code out

Re: [PHP] Line Breaks in dynamic Download

2002-09-06 Thread Larry Irwin
Later, Larry Irwin - Original Message - From: Kevin Stone [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, September 06, 2002 2:48 PM Subject: [PHP] Line Breaks in dynamic Download I have a script that allows clients to download their email lists from a database. However I can not get

Re: [PHP] Re: Getting information of a client

2002-08-09 Thread Larry Rosenman
w to get this information? Kind regards, Jan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- Larry

Re: [PHP] function for size of array

2002-07-05 Thread Larry Rosenman
shortest distance between two points is under construction. -- Noelie Alito */ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- Larry Rosenman http://www.lerctr.org/~ler Phone: +1 972-414-9812

Re: [PHP] ./configure with register_globals turned on?

2002-07-05 Thread Larry Rosenman
it's in an apache module). -- Larry Rosenman http://www.lerctr.org/~ler Phone: +1 972-414-9812 E-Mail: [EMAIL PROTECTED] US Mail: 1905 Steamboat Springs Drive, Garland, TX 75044-6749 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

[PHP] forever cookie

2002-05-12 Thread Larry Linthicum
is it possible to set a cookie that never expires? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] embedding php into html

2002-04-24 Thread Larry Brown
. Is there a trick I'm missing? Larry S. Brown MCSE Dimension Networks, Inc. Member ICCA (727) 723-8388 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] embedding php into html

2002-04-24 Thread Larry Brown
with 1000's of users hitting html all day? Like 10% hit in performance, 20...30...? No noticeable? :) Larry S. Brown MCSE Dimension Networks, Inc. Member ICCA (727) 723-8388 -Original Message- From: Chris Wesley [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 24, 2002 7:57 PM To: [EMAIL

RE: [PHP] embedding php into html

2002-04-24 Thread Larry Brown
It looks like Miquel got to the performance issue already. Thanks guys for helping me on this. Larry S. Brown MCSE Dimension Networks, Inc. Member ICCA (727) 723-8388 -Original Message- From: Miguel Cruz [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 24, 2002 8:00 PM To: Larry Brown

[PHP] compiling on freebsd

2002-04-24 Thread Larry Brown
for the file with no positive results. Larry S. Brown MCSE Dimension Networks, Inc. Member ICCA (727) 723-8388 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] compiling on freebsd

2002-04-24 Thread Larry Brown
I don't mean to be rude but as I mentioned in my post After running ./configure make and make install Please review my post for the actual problem. Larry S. Brown MCSE Dimension Networks, Inc. Member ICCA (727) 723-8388 -Original Message- From: Evan Nemerson [mailto:[EMAIL

RE: [PHP] compiling on freebsd

2002-04-24 Thread Larry Brown
in the INSTALL description but stated that if I got an error to physically locate apxs and tell configure where it is. I did a search for apxs* with no results. Anyway, I did get it going. Thank you for the input. Larry S. Brown MCSE Dimension Networks, Inc. Member ICCA (727) 723-8388

[PHP] PHP session / JavaScript conflict

2002-04-23 Thread Larry Linthicum
I am finding that the simple ? session_start(); ? is causing pages with JavaScript menus to load with 'error on page and the JavaScript to not work the session without the JavaScript seems fine, as does the JavaScript without the session ( I can do other things in PHP without conflict)

[PHP] preg_match won't match elements

2002-01-29 Thread Larry Brown
, connection or connection,connection,connection. If anyone can tell why some matches don't work when I can view the element in each array and they are identical in the exception of the key value within their respective array. Larry PS. HTML-Kit kicks butt! -- PHP General Mailing List (http

Re: [PHP] changing unix password in php?

2002-01-23 Thread Larry Brown
I've tried several versions of this: $command = su root; $id = whoami; passthru($command, $result); passthru($id, $result2); echo $result; echo $result2; Jon Farmer [EMAIL PROTECTED] wrote in message news:00de01c1a42c$9401d970$[EMAIL PROTECTED]... Along this line, I have attempted to run a

[PHP] Code logic problem pulling data from a file / for loop / by array_push

2002-01-20 Thread Larry Brown
to this stuff so my apologies if I my description is hard to follow. Larry S. Brown President/CEO Dimension Networks, Inc. Member ICCA (727) 723-8388 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact

Re: [PHP] High-Volume Newsletter Techniques?

2001-11-14 Thread Larry Jeannette II
and the process takes 5 - 6 hours? Like Sondra, I don't really want to anger thousands of people testing this thing out. Larry Jeannette Sondra Russell writes: Yes, I saw the discussion a few days earlier on this topic, but I'm wondering if there is still some unmined wisdom out there about

Re: [PHP] getrusage() not supported

2001-11-13 Thread Larry Jeannette II
According to the docs, it says to check your systems man pages for getrusage. Since they appear to referencing *nix system (no man in NT), my guess is that NT does not support it. In fact, executing getrusage at the NT command prompt gives the 'not recognized internal or external command' error.

[PHP] multidimensional array from html forms

2001-10-05 Thread Larry Linthicum
Hi I just a PHP hobbiest trying to build a points calculating system for another hobby, please bear with me. I need to build a multidimensional array from a html form the array would look like: $needed_data = array ( array (id = $member_id, points = $position ),

[PHP] Re: multidimensional array from html forms

2001-10-05 Thread Larry Linthicum
} or is the indexing of the array subject to variation and may NOT be in the same order as the [data] fields in the html ? What if nothing is entered into the txt field? Larry Linthicum [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Hi I just a PHP hobbies

Re: [PHP] chmod failed: Operation not permitted

2001-08-31 Thread Larry Rosenman
Therein lies the problem. The webserver, therefore your PHP script, is probably *NOT* running with your credentials. Larry * Police Trainee [EMAIL PROTECTED] [010831 13:50]: the files are all owned by me, that is, my unix login. --- Jason Bell [EMAIL PROTECTED] wrote: who owns the file

Re: [PHP] Reading mime attachments into a rdbms

2001-05-03 Thread Larry Hotchkiss
the list administrators, e-mail: [EMAIL PROTECTED] -- Larry Hotchkiss Universal Capital 612-551-9309 http://www.unicap.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

Re: [PHP] --enable-trans-sid and forms

2001-04-27 Thread Larry Hotchkiss
, are the URLs that are part of the form's action supposed to be modified to include the SID? So far that's not been happening and I just want to verify that this is expected behavior. thnx, Chris -- Larry Hotchkiss Universal Capital 612-551-9309 http://www.unicap.com/ -- PHP General

[PHP] update form design question.

2001-04-25 Thread Larry Hotchkiss
of the previous page of records when you head to the next. Should I update the DB as I move to the next page or perhaps after all pages are viewed? Anyways, any thoughts, ideas and or suggestions are all welcome. -- Larry H -- PHP General Mailing List (http://www.php.net

Re: [PHP] PHP Sessions Problem

2001-04-20 Thread Larry Hotchkiss
Thats very interesting. I normally use Netscape 4.7 myself, I find 6 to be a resource hog and just plain slow. I tried your site and as you pointed out, with 4.7 the registered var does not show. Yet, when I fire up IE all works fine. I guess what I find strange is that I am using

[PHP] regex and mysql - looking for opinions.

2001-04-18 Thread Larry Hotchkiss
data. None of my searches or database data has or needs any sort of punctuation, so I was thinking of striping it all out from form input. What method is everyone else using? -- Larry H. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: [PHP] PHP and Double?

2001-04-18 Thread Larry Hotchkiss
numb2 = 2 thanks. jason -- 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] -- Larry Hotchkiss Universal Capital 612-551-9309 http

[PHP] php sessions and proxies.

2001-04-16 Thread Larry Hotchkiss
that the data is reaching the script fine since other forms can be posted through the proxie. I am thinking the proxie is screwing up the returned header with the session id attached. Has anyone else encountered this phenomenon before? -- Larry H -- PHP General Mailing List (http://www.php.net

Re: [PHP] php 4.04pl 1-3 for red hat 7

2001-03-26 Thread Larry Hotchkiss
sions" and then failed. It reported "cannot find necessary header files". I am sure I just need some devel software installed or have an incorrect path, but what is the best way to figure out which header is missing or not pathed? Larry Hotchkiss wrote: Thanks. I just grabbed the s

[PHP] sessions and javascript.

2001-03-26 Thread Larry Hotchkiss
the login script or the main page. When I dont use javascript for submitting the form everything works fine, yet when I implement javascript to submit the form it ceases to function. Anyone have any ideas? -- Larry Hotchkiss -- PHP General Mailing List (http://www.php.net/) To unsubscrib

Re: [PHP] php 4.04pl 1-3 for red hat 7

2001-03-23 Thread Larry Hotchkiss
by phpinfo() ? Larry H. "..s.c.o.t.t.. [gts]" wrote: snip.. (replace php. with whatever the PHP tarball is named) at the prompt (you dont need to be root) type: tar xvfz php.tar.gz cd php. ./configure --enable-trans-sid make make test if you didnt get

[PHP] php 4.04pl 1-3 for red hat 7

2001-03-22 Thread Larry Hotchkiss
correct in assuming I need to recompile? If that is the case, can someone recommend a good "how-to" to walk me through it. I have no experience with compiling at all. -- Larry H -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional comman

RE: [PHP] getting info.. help!

2001-03-05 Thread Larry Jeannette
ltrim removes spaces on the left rtrim removes spaces on the right trim removes spaces on both the left and right Larry Jeannette MIS Director, e.Republic -Original Message- From: Brandon Orther [mailto:[EMAIL PROTECTED]] Sent: Monday, March 05, 2001 11:08 AM To: PHP User Group Subject

RE: [PHP] Is it odd or even???

2001-03-05 Thread Larry Jeannette
use the modulus operator: ($number % 2) returns 0 if the value is even Larry Jeannette MIS Director, e.Republic -Original Message- From: Brandon Orther [mailto:[EMAIL PROTECTED]] Sent: Monday, March 05, 2001 12:18 PM To: PHP User Group Subject: [PHP] Is it odd or even??? Hello

[PHP] concatenating strings and \n's for mail...

2001-02-14 Thread Larry Rosenman
w do I fix this? This is with 4.0.4pl1. LER -- Larry Rosenman http://www.lerctr.org/~ler Phone: +1 972-414-9812 E-Mail: [EMAIL PROTECTED] US Mail: 1905 Steamboat Springs Drive, Garland, TX 75044-6749 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL

Re: [PHP] concatenating strings and \n's for mail...

2001-02-14 Thread Larry Rosenman
* Christian Cresante [EMAIL PROTECTED] [010214 13:27]: You need to use "\n" for interpolation. Tried that too... Didn't work for me... --- Larry Rosenman [EMAIL PROTECTED] wrote: Greetings, I was trying to build up a multi-line body to use with the mail command,

Re: [PHP] concatenating strings and \n's for mail...

2001-02-14 Thread Larry Rosenman
t the mail, the \n showed up, not as a new line, but a literal \n. How do I fix this? Did you try . "\r\n" . ? I use it though in many places just as you have "\n" Nope, will tonight though. ... -- Lewis Bergman Texas Communications 4309 Maple St. Abilene, TX

Re: [PHP] concatenating strings and \n's for mail...

2001-02-14 Thread Larry Rosenman
d trouble within double quotes with the concatenation. LER -- Larry Rosenman http://www.lerctr.org/~ler Phone: +1 972-414-9812 E-Mail: [EMAIL PROTECTED] US Mail: 1905 Steamboat Springs Drive, Garland, TX 75044-6749 -- PHP General Mailing List (http://www.ph

Re: [PHP] PHP4.0.4pl1 with Apache 1.3.17/SSL and Frontpage ...

2001-02-08 Thread Larry Rosenman
PROTECTED] -- Larry Rosenman http://www.lerctr.org/~ler Phone: +1 972-414-9812 E-Mail: [EMAIL PROTECTED] US Mail: 1905 Steamboat Springs Drive, Garland, TX 75044-6749 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For

[PHP] apache/SUexec/PHP

2001-02-03 Thread Larry Rosenman
I noticed today that PHP apps run as the WWW user, not the User/Group specified in httpd.conf for virtualhosts. (Module version of PHP running in Apache 1.3.17). Is there any way to get the PHP module to assume the identity similar to the SUexec module will do for CGI? Thanks! -- Larry

[PHP] cancel 3A79D543.779F9F37@unicap.com

2001-02-01 Thread Larry Hotchkiss
This message was cancelled from within Mozilla. -- 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]

[PHP] imap (nntp) message tracking

2001-01-31 Thread Larry Hotchkiss
in mysql databse and I am using php4. I have been playing with a little code and can retrieve a list of messages as well as the headers/body etc, I am just unsure how to track message status. ANyone have any ideas? -- Larry Hotchkiss -- PHP General Mailing List (http://www.php.net

<    3   4   5   6   7   8   9   >