RE: [PHP] PHP from the command line

2005-11-04 Thread bruce
y's data/information and go from there. but all things remaning equal, i'm inclined to agree that the same code 'should' work. so, give us the data/output, and we'll see what it looks like. i'm also willing to bet that the issue will be something fairly simple/trivial

RE: [PHP] protect password?

2005-11-04 Thread bruce
pablo... i fail to see how your suggestion is much more secure than placing the user/passwd information in a file that's outside the web access space, and then including the file. in either case, the user wouldn't be able to read the include file. -bruce -Original Message

RE: [PHP] protect password?

2005-11-04 Thread bruce
] pablo... i fail to see how your suggestion is much more secure than placing the user/passwd information in a file that's outside the web access space, and then including the file. in either case, the user wouldn't be able to read the include file. [/snip] Greeting, Bruce. On a dedica

[PHP] form question??

2005-11-07 Thread bruce
. unfortunately, i can't seem to find this app, or any other app that would allow me to do this. can anybody point me towards an app that could/would do this? thanks -bruce [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Re: Security Issues - Where to look?

2005-11-08 Thread bruce
be funding for this kind of app... ps.. this kind of app would not be trivial to create!!! -bruce -Original Message- From: Chris Shiflett [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 08, 2005 12:08 PM To: Gustavo Narea Cc: php-general@lists.php.net Subject: Re: [PHP] Re: Security Issu

RE: [PHP] to the freelancers!!

2005-11-09 Thread bruce
there are already a great deal of conusulting companies who look to businesses for consulting/development/design work. this kind of model would simply be an offshoot of that kind of approach. -bruce -Original Message- From: Richard Lynch [mailto:[EMAIL PROTECTED] Sent: Tuesday, N

[PHP] java .vs php

2005-11-09 Thread bruce
php can really drive serious commercial sites... thanks -bruce [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] a code question..??

2005-11-10 Thread bruce
urn the resulting information back to app A... is this even possible?? is there an easier solution...??? thanks -bruce [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] a code question..??

2005-11-10 Thread bruce
ly download the code from app B to app A which isn't what i want. i'm looking to keep the code on app B from being modified/played with, which is why i'm inclined to think the code/form in question needs to be able to be run from app B... -bruce -Original Message- From: Ric

RE: [PHP] a code question..??

2005-11-10 Thread bruce
but i'm not sure if what i'm thinking of can be accomplished... the information in the code/forms from app B will change based on the username... thoughts/comments.. -bruce -Original Message- From: Ben [mailto:[EMAIL PROTECTED] Sent: Thursday, November 10, 2005 1:24 PM To: php-gene

RE: [PHP] a code question..??

2005-11-10 Thread bruce
ay to run a chunk of code on a remote server... i'd rather not put the source on the intial client-app A machine... -bruce -Original Message- From: Ben [mailto:[EMAIL PROTECTED] Sent: Thursday, November 10, 2005 1:59 PM To: php-general@lists.php.net Subject: Re: [PHP] a code ques

RE: [PHP] a code question..??

2005-11-10 Thread bruce
ocess... of course, the fact that the user's php would have to have the soap extensions installed would be an issue... -bruce -Original Message- From: Richard Lynch [mailto:[EMAIL PROTECTED] Sent: Thursday, November 10, 2005 3:02 PM To: [EMAIL PROTECTED] Cc: 'Ben'; php-general@l

RE: [PHP] a code question..??

2005-11-10 Thread bruce
| | blah | | | | | | | +---+ i'm not sure what's the best approach to this... thanks bruce -Original Message- From: comex [mailto:[EMAIL PROTECTED] Sent: Thursday, November 10, 2005 5:28 PM To: php-general@lists.php.net Subject: Re: [PHP] a cod

RE: [PHP] a code question..??

2005-11-11 Thread bruce
would the approach be to use an iframe, and some sort of ajax code, to allow the user to interact with the dialog/code within the iframe. keep in mind, that the code within the iframe would be running on the remote server... -bruce -Original Message- From: comex [mailto:[EMAIL PROTECTED

[PHP] php/linux user groups in the east bay area..

2005-11-12 Thread bruce
hi.. anybody know of any php/linux/apache user groups in the east bay (dublin/pleasanton/san ramon/etc...) area? need to join one to find other like minded php/linux guys who are into developing.. thanks -bruce -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

RE: [PHP] php/linux user groups in the east bay area..

2005-11-12 Thread bruce
let me ask the question in a different way? is there anyone in the bay area (dublin/san jose/santa clara/san francisco/etc...) who would like to get together to talk code/work on projects/etc... checked out the existing user groups.. they look rather empty... -bruce -Original Message

RE: [PHP] Testing on the local server

2005-11-18 Thread bruce
aver files are being displayed? the other suggestions that you've gotten have been from people who've pointed you to all in one apps. this may/may not be the best solution for you. -bruce -Original Message- From: Allison [mailto:[EMAIL PROTECTED] Sent: Friday, November 18

[PHP] security question... "man in the middle attacks"

2005-11-21 Thread bruce
. searching across google hasn't turned up any examples of how this can be accomplished... thanks -bruce [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] security question... "man in the middle attacks"

2005-11-21 Thread bruce
rom the biz server, we can assume that the biz server is giving the correct url/ip addresses.. this could be done for every request. this kind of approach would be pretty difficult to corrupt, unless the client app where somehow mangled/forged. you could determine if the client was ever screwed with by

[PHP] http protocols defining what gets sent between web server and browser

2005-11-23 Thread bruce
stated, the underlying reason for the questions is to get a better understanding of 'man in the middle attacks' as this applies to web server apps. Thanks bruce [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Subtracting Large Numbers

2006-02-18 Thread Bruce
-2338152059 On others, I get: MaxInt=2147483647 AA=-190668411 BB=-2181087916 AA+BB=1923210969 Why the difference? Thanks...Bruce -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Different Values for intval(float)

2006-02-18 Thread Bruce
Consider the following code: $BB = -2181087916; $AA = (int)$BB; $AA = intval($BB); On some systems, $AA will be int(-2147483648), which is actually consistent with the documentation. On most systems, however, $AA will be int(2113879380), which is the same value truncated

[PHP] select * From ????

2002-12-15 Thread Bruce Levick
Hi, Am just a newbie at this and was going great until I have hit this smell snag. I am connecting to mysql and all works well there. I query a table "Illustrations" ($query = "SELECT * FROM Illustrations";), and want to print the values of two columns ("titletext" & "img")within each row as the r

[PHP] undefined index....property.

2002-12-16 Thread Bruce Levick
// I Am not quite sure why it is outputting these two errors. I have not changed anything from downloading it off the serverapart from targeting the database on my local machine now. Is it possibly a session error?? If anybody has any thoughts please pa

[PHP] undefined index....property.

2002-12-16 Thread Bruce Levick
Sorry I did not mention. My local machine is WinXP pro, running php 4.2 and mysql 3.23. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] selecting img file extension.

2002-12-16 Thread Bruce Levick
Sorry for the newbie question. I am an artist and entering my pieces into a databasebasically all that will be displaying will be Title: Medium: Date Created: and an image (.gif, .jpg, .swf) I want to know what is the best way to call a specific image type.??? Should I give each image file e

[PHP] repeat region

2002-12-18 Thread Bruce Levick
Hi php'ers, I have learnt alot in the last week in regards to php and listing the rows of a table set. I need help with a small challenge. I can retrieve rows from a database table and list the results in HTML cell successfully. My challenge is this. I want to list the I.D (auto increment id num

[PHP] mmmmm SELECT

2003-01-06 Thread Bruce Levick
I have this silly problem. This select query works fine. $query_retrievetasks = "SELECT * FROM tasks, users WHERE tasks.UID = users.User_id ORDER by tasks.ID"; But when I add a further filt

RE: [PHP] mmmmm SELECT

2003-01-06 Thread Bruce Levick
Yes that works.me newbie php skills falling down again...;0) -Original Message- From: Wee Keat (VisualDensity] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 07, 2003 10:25 AM To: Bruce Levick Subject: Re: [PHP] m SELECT

[PHP] populate a list menu

2003-01-06 Thread Bruce Levick
Howdy, I am looking to populate a list menu with the current date and then the 30days after that current date. Is there a small snippet of code that achieves this?? Cheers -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] populate a list menu

2003-01-06 Thread Bruce Levick
That's sweet. Can you just satisfy my curiosity and explain the 86400?? I am thinking this might be minutes?? -Original Message- From: Justin French [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 07, 2003 4:12 PM To: Bruce Levick; [EMAIL PROTECTED] Subject: Re: [PHP] populate a

[PHP] restrictions

2003-01-07 Thread Bruce Levick
I find that my the company that I work for is a little over protective. My machine is quite restricted (as in firewall and accessability) when it comes to ftp and telnet. Well basically my hands are tied in that sense. I am testing my database build on my local machine which runs fine and all. I

RE: [PHP] restrictions

2003-01-07 Thread Bruce Levick
Well I can't be totally sure but I think all outgoing mail points to an external SMTP server. -Original Message- From: Marco Tabini [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 08, 2003 9:11 AM To: Bruce Levick Cc: [EMAIL PROTECTED] Subject: Re: [PHP] restrictions Hello

RE: [PHP] restrictions

2003-01-07 Thread Bruce Levick
puter restrictions. -Original Message- From: Marco Tabini [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 08, 2003 9:16 AM To: Bruce Levick Cc: [EMAIL PROTECTED] Subject: RE: [PHP] restrictions Couple of suggestions: 1) Try connection to the SMTP server manually with Telnet, and see i

RE: [PHP] restrictions

2003-01-07 Thread Bruce Levick
Thanks, Tried this and I get. "Cannot opeen connection to host on port 23" -Original Message- From: Timothy Hitchens (HiTCHO) [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 08, 2003 9:32 AM To: Bruce Levick; 'Marco Tabini' Cc: [EMAIL PROTECTED] Subject: RE

RE: [PHP] restrictions

2003-01-07 Thread Bruce Levick
It definitely says port 23. And I can't connect to anything at all. I even tried my own my local machine IP address and that doesn't work either. Weird. -Original Message- From: Marco Tabini [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 08, 2003 9:29 AM To: Bruce Levick C

RE: [PHP] restrictions

2003-01-07 Thread Bruce Levick
Connection failed on port 25 as well. -Original Message- From: Sean Malloy [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 08, 2003 9:41 AM To: [EMAIL PROTECTED]; Bruce Levick Subject: RE: [PHP] restrictions SMTP = port 25 telnet 25 should do the trick -Original Message

RE: [PHP] restrictions

2003-01-07 Thread Bruce Levick
Sorry, I tried this as well and it failed to connect on port 25. -Original Message- From: Timothy Hitchens (HiTCHO) [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 08, 2003 9:39 AM To: Bruce Levick Cc: [EMAIL PROTECTED] Subject: RE: [PHP] restrictions You need to follow my

RE: [PHP] restrictions

2003-01-07 Thread Bruce Levick
Yes I am and its very strange. I can't even ftp to my own website to test it from there. -Original Message- From: Timothy Hitchens (HiTCHO) [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 08, 2003 9:48 AM To: Bruce Levick Cc: [EMAIL PROTECTED] Subject: RE: [PHP] restric

RE: [PHP] restrictions

2003-01-07 Thread Bruce Levick
It is using a microsoft exchange server. -Original Message- From: Larry Brown [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 08, 2003 9:53 AM To: Bruce Levick Subject: RE: [PHP] restrictions In order to send mail on your mail client you must be able to connect to port 25 on what

[PHP] a simple getenv question....

2003-01-22 Thread Bruce Douglas
dHat 8.0. I've checked through the PHP.INI file, but couldn't seem to find why this might be occuring. Any help/assistance would be appreciated. thanks bruce [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] a simple getenv question....

2003-01-22 Thread Bruce Douglas
phpinfo() returns everything as expected.. but not having the code .. i don't know what internal method it uses to access the information... but thanks... -bruce -Original Message- From: Timothy Hitchens (HiTCHO) [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 22, 2003 4:18

RE: [PHP] a simple getenv question....

2003-01-22 Thread Bruce Douglas
Timothy, Thanks for your input.. but I was trying to get a better understanding as to why the getenv() function was apparently not returning the SERVER environment vars. thanks -bruce -Original Message- From: Timothy Hitchens (HiTCHO) [mailto:[EMAIL PROTECTED]] Sent: Wednesday

[PHP] php/sendmail/apache/linux...

2003-01-24 Thread Bruce Douglas
s to be setup correctly, with the sendmail_path pointing to sendamil. Any ideas as to what I need to do, or should be checking Any pointers/assistance would be greatly appreciated. Thanks -Bruce [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] RE: php/sendmail/apache/linux...

2003-01-24 Thread Bruce Douglas
missing that has to be set for this to work I have Linux Redhat 8.0, PHP 4.2.2... I have the sendmail RPM and the PHP RPMs from the Redhat 8.0 installation disks Any help/assistance will be appreciated Thanks... Bruce [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTEC

[PHP] mail () format

2003-01-27 Thread Bruce Levick
I have a number of field entries that I am trying to send through to the body of an email. How can I format the mail() command to send these multiple fields. EG $name, $address, $comments. All to go into the body of an email. Cheers -- PHP General Mailing List (http://www.php.net/) To unsub

[PHP] List-Unsubscribe

2003-02-05 Thread Bruce Levick
``List-Unsubscribe''

[PHP] Threading

2003-02-18 Thread Bruce Miller
Will PHP allow multiple-thread execution? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Blatant newbie question - killing a session

2003-07-09 Thread Bruce Bruen
in testig only, the way it works now is great for live. Tia Bruce -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Blatant newbie question - killing a session

2003-07-10 Thread Bruce Bruen
Thanks, That did the trick. Nicely encapsualable too, so I can easily remove it. Regards Bruce -Original Message- From: Marek Kilimajer [mailto:[EMAIL PROTECTED] Sent: Thursday, 10 July 2003 8:23 PM To: Bruce Bruen Cc: [EMAIL PROTECTED] Subject: Re: [PHP] Blatant newbie question

[PHP] reading/writing the value of an / text value

2003-06-09 Thread Bruce Douglas
ike: echo" document.foo.element.LU.LI.text = "dfdgd"; "; (of course, using whatever the appropriate doument string would be...) Any pointers/code samples/web sites would be helpful Thanks Bruce [EMAIL PROTECTED] (925) 866-2790 -- PHP General Mailing List (http:

[PHP] Re: n

2002-07-31 Thread Bruce Riddle
Tomasz Zolnierczyk wrote: > > subscribe [EMAIL PROTECTED] > > = > Tomasz Zolnierczyk > > "The Path Of Excess Leads To The Tower Of Wisdom" > - W. Blake > > __ > Do You Yahoo!? > Send instant messages & get email alerts with Yahoo! Messenger.

[PHP] php3 to php4 migration woes

2002-07-31 Thread Bruce Riddle
Oh yeah, this is all on Solaris. Rgds, Bruce Riddle -- Can marketing and reality really coexist ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Host

2002-08-27 Thread Bruce Karstedt
Anyone care to recommend a host as follows: Unix PHP MySQL Domain Reg. No unusual size or traffic requirements (now) Pay by Check (my company will not allow the used of company credit cards over the Internet.) Bruce Karstedt President Technology Consulting Associates, Ltd. Tel: 847-735-9488

RE: [PHP] Combo box selected value...

2002-06-07 Thread Bruce Karstedt
Sounds like you are working on a windows box with a bad battery back up for the clock! Bruce Karstedt President Technology Consulting Associates, Ltd. Tel: 847-735-9488 Fax: 847-735-9474 -Original Message- From: Miguel Cruz [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 06, 2002 4:01

RE: [PHP] Re: Date?

2002-06-09 Thread Bruce Karstedt
works just fine for me. Bruce Karstedt President Technology Consulting Associates, Ltd. Tel: 847-735-9488 Fax: 847-735-9474 -Original Message- From: John Taylor-Johnston [mailto:[EMAIL PROTECTED]] Sent: Saturday, June 08, 2002 11:50 PM To: [EMAIL PROTECTED] Cc: Jeremy Bowen Subject

[PHP] Help with resize pix to thumbnail from mysql files in the directory

2002-06-12 Thread Bruce Youb
Hi Shane I seen your message about binary extraction and although I understand the concept it is past my pay grade. (newbie) I am working on customizing a cart and I am looking for an example of script to work on that extracts a file name from the db and resizes into a table. I tried a few thin

RE: [PHP] Editor

2002-06-13 Thread Bruce Karstedt
I've been using Homesite - I really like it. Bruce Karstedt President Technology Consulting Associates, Ltd. Tel: 847-735-9488 Fax: 847-735-9474 -Original Message- From: Daniele Baroncelli [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 13, 2002 2:19 PM To: [EMAIL PROTECTED] Su

RE: [PHP] Shut down server

2002-06-13 Thread Bruce Karstedt
This is a bad idea from a security standpoint. If your server is local, login as root and type shutdown. If the system is remote telnet to the box, login, su to root and type reboot. If you use shutdown remotely, there is no way to restart the server. Bruce Karstedt President Technology

RE: [PHP] Re: forcing file downloads

2002-06-13 Thread Bruce Karstedt
This is determined by your mime types in apache conf file (assuming you are using apache) if the file type is not defined apache will try and download the file instead of parsing it for the browser. Bruce Karstedt President Technology Consulting Associates, Ltd. Tel: 847-735-9488 Fax: 847-735

RE: [PHP] php server on Windows

2002-06-13 Thread Bruce Karstedt
IMHO Apache is the main train. I can install apache on a *nix box in 10 mins. Maybe 20 mins on win box. Apache is much more stable and easier to configure, unless you absolutely need ASP. Bruce Karstedt President Technology Consulting Associates, Ltd. Tel: 847-735-9488 Fax: 847-735-9474

RE: [PHP] Re: php server on Windows

2002-06-14 Thread Bruce Karstedt
. Just my 2 cents Bruce Karstedt President Technology Consulting Associates, Ltd. Tel: 847-735-9488 Fax: 847-735-9474 -Original Message- From: Peter [mailto:[EMAIL PROTECTED]] Sent: Friday, June 14, 2002 3:06 PM To: [EMAIL PROTECTED] Subject: [PHP] Re: php server on Windows "

RE: [PHP] Re: php server on Windows

2002-06-14 Thread Bruce Karstedt
rbage box was 8 times faster. Look I'm not out to bash Microsoft but every good carpenter has more than one tool in his box and knows which one to use for which job. Even Microsoft uses Unix for their Web Servers. Bruce Karstedt President Technology Consulting Associates, Ltd. Tel: 847-735-948

RE: Re[2]: [PHP] Re: php server on Windows

2002-06-14 Thread Bruce Karstedt
rvice / speed and uptime - learn and use Unix. 5) If you want to learn how to configure the hardware - I'll teach you that too. Just contact me off list. Nuff said. Bruce Karstedt President Technology Consulting Associates, Ltd. Tel: 847-735-9488 Fax: 847-735-9474 -Original Me

RE: [PHP] session problems....

2002-06-14 Thread Bruce Karstedt
You should not be writing to /tmp that is a system directory. php.ini is a file. If you need a "temporary" directory, use ./tmp that will be directory in your web root directory. Bruce Karstedt President Technology Consulting Associates, Ltd. Tel: 847-735-9488 Fax: 847-735-9474 ---

RE: Re[2]: [PHP] session problems....

2002-06-14 Thread Bruce Karstedt
box where your site is hosted. The use of OS standard directories such as /tmp or /etc are bad form in Unix and make error log analysis difficult at best Bruce Karstedt President Technology Consulting Associates, Ltd. Tel: 847-735-9488 Fax: 847-735-9474 -Original Message- From: Julie Melo

RE: [PHP] disable ability to download image?

2002-06-18 Thread Bruce Karstedt
I've generally seen this done in JavaScript, by disabling the right mouse button. Bruce Karstedt President Technology Consulting Associates, Ltd. Tel: 847-735-9488 Fax: 847-735-9474 -Original Message- From: Steph [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 18, 2002 4:14 PM To

RE: [PHP] mailing list program?

2002-06-22 Thread Bruce Karstedt
Try majordomo or ezmlm, neither are PHP dependent. Bruce Karstedt President Technology Consulting Associates, Ltd. Tel: 847-735-9488 Fax: 847-735-9474 -Original Message- From: savaidis [mailto:[EMAIL PROTECTED]] Sent: Saturday, June 22, 2002 3:08 AM To: PHP list Subject: [PHP] mailing

RE: [PHP] Start / Stop

2002-06-24 Thread Bruce Karstedt
Timestamp it at the beginning and the end. Bruce Karstedt President Technology Consulting Associates, Ltd. Tel: 847-735-9488 Fax: 847-735-9474 -Original Message- From: Chris Kay [mailto:[EMAIL PROTECTED]] Sent: Monday, June 24, 2002 6:57 PM To: PHP General List Subject: [PHP] Start

RE: [PHP] Java Pop UP...

2002-06-26 Thread Bruce Karstedt
Or just make sure it is not contained within . Bruce Karstedt President Technology Consulting Associates, Ltd. Tel: 847-735-9488 Fax: 847-735-9474 -Original Message- From: Erik Price [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 26, 2002 2:51 PM To: [EMAIL PROTECTED] Cc: PHP List

RE: [PHP] JavaScript to PHP?

2002-06-29 Thread Bruce Karstedt
You might be able to pass them as a cookie. Bruce Karstedt President Technology Consulting Associates, Ltd. Tel: 847-735-9488 Fax: 847-735-9474 -Original Message- From: Jed Verity [mailto:[EMAIL PROTECTED]] Sent: Saturday, June 29, 2002 2:59 PM To: Chris Shiflett Cc: [EMAIL PROTECTED

RE: [PHP] Getting IP from behind proxies

2002-06-30 Thread Bruce Karstedt
Why not create a cookie for that poll. When the vote check for the cookie. Unless a user clears the cookie himself, you basically limit votes to one per computer or one per computer per user. Bruce Karstedt President Technology Consulting Associates, Ltd. Tel: 847-735-9488 Fax: 847-735-9474

RE: [PHP] pop-up windows

2002-06-30 Thread Bruce Karstedt
Here ! Here ! Everyone's time is valuable, and therefore the more we all respect each other's time and opinions, the more valuable a resource this will become. Bruce Karstedt President Technology Consulting Associates, Ltd. Tel: 847-735-9488 Fax: 847-735-9474 -Original Message

[PHP] PHP with CSS

2002-06-30 Thread Bruce Karstedt
Quick question? Is their anything in Apache or PHP that would keep styles from working. Both external (CSS) and inline styles are ignored. Environment : Win XP Pro Apache 2.0.39 PHP 4.2.1 Writing & Debugging on Homesite 4.0.1 Bruce Karstedt President Technology Consulting Associates,

RE: [PHP] PHP with CSS

2002-06-30 Thread Bruce Karstedt
Checking "view source" was the first thing I thought of. The inline code "appears" OK, style sheets, I only see the link of course. Bruce Karstedt President Technology Consulting Associates, Ltd. Tel: 847-735-9488 Fax: 847-735-9474 -Original Message- From: Martin T

RE: [PHP] Win98, Apache, PHP Config Problem

2002-07-01 Thread Bruce Karstedt
Just went through - versions please? Bruce Karstedt President Technology Consulting Associates, Ltd. Tel: 847-735-9488 Fax: 847-735-9474 -Original Message- From: Jay Blanchard [mailto:[EMAIL PROTECTED]] Sent: Monday, July 01, 2002 8:53 AM To: [EMAIL PROTECTED] Subject: [PHP] Win98

RE: [PHP] php4apache.dll...

2002-07-12 Thread Bruce Karstedt
I got it when I downloaded 4.2.1 if you can't find it I'll e-mail you a copy. Bruce Karstedt President Technology Consulting Associates, Ltd. Tel: 847-735-9488 Fax: 847-735-9474 -Original Message- From: Peter [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 11, 2002 1:22 AM T

Re: [PHP] PHP Editor - which to use?

2003-09-24 Thread Kevin Bruce
FYI- New to this list but have been a php coder for 2 years. I know a lot of you out there are going to groan inwardly, but I use Dreamweaver, mainly because that's what I used since it's inception when I was writing static sites. I use OSX for my writing platform and occasionally use BBedit as we

Re: [PHP] PHP Editor - which to use?

2003-09-24 Thread Kevin Bruce
Bones! Great find/replace utility. > Incredible adaptation to your needs. Owesome syntax coloring. Terminal > included. FTP, mail, telnet, terminal, macro, perl included. Try it, now! > > Cesar > > (If any one cares, I also think that Dreamweaver Sucks!, big Time, > capita

Re: [PHP] Does the AOL browser break any standards?

2003-09-29 Thread Kevin Bruce
CSS, HTML 4, XHTML, or > something like that. > > -Dan -- Kevin Bruce Educational Web Designer VIP K-16 Grant http://www.scienceinquiry.org [EMAIL PROTECTED] Maryland Sea Grant College 4321 Hartwick Road, Suite 300 College Park, MD 20740 301.403.4220 ext. 25 OR (on Wednesdays and Fri

Re: [PHP] Central authentication for multiple sites

2003-09-29 Thread Kevin Bruce
eople access the > sites with are unique. > > Any ideas? > > Thanks! -- Kevin Bruce Educational Web Designer VIP K-16 Grant http://www.scienceinquiry.org [EMAIL PROTECTED] Maryland Sea Grant College 4321 Hartwick Road, Suite 300 College Park, MD 20740 301.403.4220 ext. 25 OR (on

Re: [PHP] Congratulations You Win

2003-10-08 Thread Kevin Bruce
f and thank > you for being part of our promotions program. > > Sincerely, > Clark Wood > THE PROMOTIONS MANAGER, SUNSWEETWIN PROMO LOTTERY,THE > NETHERLANDS. > NB. Any breach of confidentiality on the part of > the winners will result to disqualification. > SORRY FOR

[PHP] Calling mail() in a loop

2003-11-13 Thread Chris Bruce
other function that I could call that would be a similar test without having to send out emails. Thanks for your time. Cheers, Chris -- Chris Bruce [EMAIL PROTECTED] Idextrus http://www.idextrus.com 3282 Wilmar Cres. Mississauga, ON L5L4B2 CA 905.828.9189

RE: [PHP] Munging hidden/form variables

2001-03-02 Thread Bruce Molyneux
It's probably a good idea to stop using hidden form fields. Save your state data securely, use sessions etc. Then you only have the usual problem of validating the data you wanted the user to send you , instead of also the hidden data you were hoping they would leave alone! HTH Cheers

[PHP] Hosts.

2001-05-01 Thread David Bruce
My host is Windows 98, Xitami and unstable MySQL and Perl/CGI. I'm looking for a *free* host, with CGI, Perl 5+, MySQL access, SSI & PHP. Thanks, Owen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

[PHP] manual : Call-time pass-by-reference has been deprecated

2002-01-20 Thread Bruce BrackBill
Hi, If Call-time pass-by-reference has deprecated so long ago, why are the instructions on how to do it still in the manual? http://www.php.net/manual/en/html/functions.arguments.html#functions.arguments.by-reference At least it should point out that it has been deprecated. Bruce

RE: [PHP] PHP-JavaScript

2002-01-20 Thread Bruce BrackBill
ther_page.html";); //Redirect browser break; case ... } Cheers, Bruce _ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp. -- PHP General Mailing List (http://www.php.net/) To unsubsc

[PHP] Calling Compiled File From PHP File

2002-05-20 Thread Bruce Miller
here's php source code for UNIX available. How about Win32? Bruce -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] ODBC -- Setting ApplicationID with PHP

2002-03-21 Thread Bruce Garlock
P script to pass the application name to the ODBC server, so that I can set up a mapping on the server that allows write access when a certain application string is sent. PHP 4.06 (with file-upload patch) Openlink ODBC 1.5 Linux Client SCO Informix 5 server TIA- Bruce -- PHP General Mailing List

[PHP] replace nested custom html tags

2001-11-04 Thread Bruce BrackBill
he output:( it doesn't replace the nested [u] [/u] ): [u] underlined and bold [/u] italics Thanks, Bruce _ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp -- PHP General Mailing List (http:

[PHP] preg_replace() substrings NOT IN tags

2001-07-31 Thread Bruce BrackBill
h 'a' in the following string if it is followed by ( zero or more of *any* character, then NOT a '>' ) * this does not work ( using regex ASSERTIONS ) * it matches the 'a' before the '>' ... which I don't want ) $haystack = "ad>bc|abc &quo

[PHP] Question on using png file in ezPdf class

2004-09-21 Thread Chris Bruce
correct, the resulting PDF just has a whitespace where the logo should be when I try to use a PNG. Has anyone who has used this class encountered a similar problem? Thanks. -- Chris Bruce [EMAIL PROTECTED] Idextrus E-Business Architects http://www.idextrus.com 3282 Wilmar Cres. Mississauga, ON

Re: [PHP] Question on using png file in ezPdf class

2004-09-21 Thread Chris Bruce
Don't think that is it, but for the record, it is compiled with-png. Thanks for the stab though :) -- Chris Bruce [EMAIL PROTECTED] Idextrus E-Business Architects http://www.idextrus.com 3282 Wilmar Cres. Mississauga, ON L5L4B2 CA 905.828.9189 South Office 705.361.0331 North O

Re: [PHP] PHP/PEAR

2007-02-14 Thread Bruce Cowin
that reminds me: a woman walks into a bar carrying a duck. the bartender says "hey, you can't come in here with that pig". the woman says "it's not a pig, it's a duck". and the bartender says "i was talking to the duck". Regards, Bruce >&g

Re: [PHP] WHERE problem

2007-02-19 Thread Bruce Cowin
Are you getting an error or just nothing returned? The first thing I'd check is if index is a numeric field and if it is, remove the single quotes from around $randi in the where clause. Regards, Bruce >>> Mike Shanley <[EMAIL PROTECTED]> 20/02/2007 9:23:08 a.m. >

[PHP] can this be fone with PHP?

2007-02-22 Thread Bruce Gilbert
I have created forms with PHP where the information in the fields is sent via sendmail to an email, but is there a way to have the information extracted and a pdf form created when the user hits the submit button? -- ::Bruce:: -- PHP General Mailing List (http://www.php.net/) To unsubscribe

[PHP] curlopt_timeout default

2007-03-01 Thread Bruce Cowin
t find is what the default for this setting is. Does anyone know? Thanks. Regards, Bruce -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] curlopt_timeout default

2007-03-01 Thread Bruce Cowin
Thanks Richard. I'll look into that. And yes, I'm looking at capturing the curl_getinfo() as well. Thanks again. Regards, Bruce >>> "Richard Lynch" <[EMAIL PROTECTED]> 2/03/2007 1:36 p.m. >>> On Thu, March 1, 2007 5:16 pm, Bruce Cowin wrote:

Re: [PHP] curlopt_timeout default

2007-03-01 Thread Bruce Cowin
For anyone who is interested, I found this: > libcurl has no default timeouts for these. When you > don't use them, you will > be in the hands of your operating system's timeouts. at http://curl.haxx.se/mail/lib-2004-04/0027.html Regards, Bruce >>> "Bruc

[PHP] help with script needed

2007-03-07 Thread Bruce Gilbert
I have a little script that prints a number out from 1 to 100 [php] "; } ?> [/php] I just need to add code to print something different, say "foo" if the output is a multiple of 5 or 10 for example. How do I go about doing this? -- ::Bruce:: -- PHP General Mailing List (

<    1   2   3   4   5   6   7   >