php-general Digest 26 Nov 2006 06:21:07 -0000 Issue 4480

2006-11-25 Thread php-general-digest-help
php-general Digest 26 Nov 2006 06:21:07 - Issue 4480 Topics (messages 245137 through 245144): So, should money ecomonies collapse, you could still have a valuation system built on how others percieved you. 245137 by: Carol Locke Re: To install a small program from a web browser

Re: [PHP] To install a small program from a web browser

2006-11-25 Thread Rory Browne
But he still wants to install programs without knowledge to the users of his membership site (and no it's not a pornography site...I don't do pornography sites). Let me paraphrase that. He still wants to circumvent the users security, and install programs without their knowledge. Incase I

Re: [PHP] To install a small program from a web browser

2006-11-25 Thread Navid
Thanks guys. I found out (or he actually revealed to me) what he wants his members to download without their knowledge. I refused to work on his project. I knew it sounded fishy. --- Navid [EMAIL PROTECTED] wrote: See that's the thing. It's a membership I don't think I would be inclined to

Re: [PHP] To install a small program from a web browser

2006-11-25 Thread Dotan Cohen
On 25/11/06, Navid [EMAIL PROTECTED] wrote: Thanks guys. I found out (or he actually revealed to me) what he wants his members to download without their knowledge. I refused to work on his project. I knew it sounded fishy. Good for you. You don't need to be a part of that, and I can only

[PHP] GD, and GD JPEG

2006-11-25 Thread Jeff
Hi there. I installed a script but it requires GD and GD JPEG I downloaded GD, and GD JPEG But how the heck do I install it? Thanks guys -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] GD.. con't

2006-11-25 Thread Jeff
Do I have to compile it with a C program? What programs do people suggest I use to make PHP Files? Is there a simple C program that will create basically whatever you want to do, without knowing the language? I recall studying it in school, vaguely recalling the code... Thanks, Jeff --

Re: [PHP] GD.. con't

2006-11-25 Thread Richard Lynch
On Sat, November 25, 2006 4:25 pm, Jeff wrote: Do I have to compile it with a C program? You do not need to compile GD on Windows, unless you are a masochist. :-v Use http://php.net/phpinfo to find out where you php.ini file is, or should be. Whatever directory that shows for php.ini, put your

Re: [PHP] GD, and GD JPEG

2006-11-25 Thread sublimenal
Hey you need to ./configure it into your php installation via the command line Jeff-153 wrote: Hi there. I installed a script but it requires GD and GD JPEG I downloaded GD, and GD JPEG But how the heck do I install it? Thanks guys -- PHP General Mailing List

[PHP] Self generating variables/arrays

2006-11-25 Thread jekillen
Hello; I am writing some code that will format results of a search for display. I need to split an array into several different arrays but I won't know before hand how many, so, I am looking for a way to dynamically generate arrays for this purpose. My present direction is to use the following

Re: [PHP] Self generating variables/arrays

2006-11-25 Thread Larry Garfield
If eval is the answer, you're asking the wrong question. You haven't given enough information to really say the best way to do what it is you're doing. However, I suspect that explode() and arrays of arrays (i.e., $a[1][2]) will do what you need to do much better than messing around with