[PHP] Re: Problem in mysql connection

2002-01-26 Thread Alan McFarlane
What is the error message? (It will help us a lot G) Uma Shankari T. [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Hello, I have installed php4 rpm in my machine.while connecting php with mysql it is giving fatal error.I have given like this

[PHP] Sending Files to a Remote User

2002-01-26 Thread [ rswfire ]
Hello, I am creating dynamic CSV files using PHP, and currently these files are being saved on the server, but I would like to send them directly to the user who requested the file, similar to what phpMyAdmin does. I looked at the source for phpMyAdmin and it was a bit complicated. I was

Re: [PHP] set_time_limit() in a loop

2002-01-26 Thread Paul Roberts
what are you doing a while on if while never ends and you reset the time out each loop and use ignore_user_abort(true), it will still be going 13 hours latter. maybe if you send the full code so we can look at it. Paul Roberts [EMAIL PROTECTED] - Original

Re: [PHP] Outreaching (bug fix)

2002-01-26 Thread Bogdan Stancescu
For whoever may have bumped into the same problem as Mr. Walker, please read the release notes on sourceforge (kudos Matthew for the step-by-step bug-tracking - I would've been unable to solve this for a long time without him). This is my last message on this topic on the mailing list - I don't

[PHP] get image from blob in mysql

2002-01-26 Thread Rodrigo Peres
List, I'm using the following code to retrieve image from Mysql. My problem is how can I output another image if the given ID doesn't have an image on it??? I had already inserted a blank gif in the database in order to use it, but I've tried to check if ($resultado['Imagem_data'] == ) or null

[PHP] Re: get image from blob in mysql

2002-01-26 Thread Mike Frazer
The code below doesn't show the test you mentioned. By all means testing if a variable = should work, but you may want to try something like if (!$resultado['Imagem_data']) { ... } Sometimes testing a value against can cause problems because of non-appearing whitespace that may exist in

php-general Digest 26 Jan 2002 13:48:07 -0000 Issue 1134

2002-01-26 Thread php-general-digest-help
php-general Digest 26 Jan 2002 13:48:07 - Issue 1134 Topics (messages 82186 through 82210): Re: upgrade problem 82186 by: Alan McFarlane Re: HELP! with PHP extension 82187 by: Alan McFarlane Re: Printing JPEG images generated with ImageJPEG with IE/WIN 82188 by:

[PHP] Banner agencies - OT

2002-01-26 Thread Boaz Yahav
Hi Most of us that have sites use some kind of ad agencies. It's small change but it helps. In recent months, many ad agencies closed down, many stopped paying etc... I was wondering if anyone is happy with his ad agency. thanks berber -- PHP General Mailing List (http://www.php.net/) To

[PHP] Using HTTP Post variables with multiple domains and scripts

2002-01-26 Thread Dreamriver.com
Hi Folks, I use the regular form POST method to send variables from Domain A to Domain B. On domain B I run a short script. The script does it's thing and then sends the posted variables back to Domain A with header(Location: http://www.domainA.com/folder/script.php;); The problem is that

Re: [PHP] break statement usage

2002-01-26 Thread DL Neil
Private note: heard the one about throwing stones and living in glass houses? tip Try to keep your posts a little shorter if only for the sake of the dialup users ;) /tip this said by someone who: - pushes MIME messages into a discussion list/newsgroup (instead of simple text format

[PHP] Calculate Directory Size

2002-01-26 Thread Simon H
smime.p7m Description: application/pkcs7-mime

Re: [PHP] break statement usage

2002-01-26 Thread Nick Wilson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 * and then DL Neil blurted Private note: heard the one about throwing stones and living in glass houses? tip Try to keep your posts a little shorter if only for the sake of the dialup users ;) /tip this said by someone who:

[PHP] Re: Calculate Directory Size

2002-01-26 Thread Alan McFarlane
I suggest using an external tool - using PHP would probably be too slow esp. if you're hitting 1000+ users. (Plus, I think you would have to run a lot of clearstatcache()'s which may cause all sorts of problems)... If you do an ls or dir or similar then you could parse the output, however there

[PHP] phplib

2002-01-26 Thread Kunal Jhunjhunwala
hey... im tryint to lay some conditions for the html output... example : if ($check == 1) { some html } else { some other html } The problem here is, I want the html in both cases to be customisable by the user... so I would have to make it a part of the

Re: [PHP] phplib

2002-01-26 Thread Nick Wilson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 * and then Kunal Jhunjhunwala blurted hey... im tryint to lay some conditions for the html output... example : if ($check == 1) { some html } else { some other html } The problem here is, I want the

[PHP] Variables Limit

2002-01-26 Thread Philip J. Newman
Is there any limit on the amount of variables that you can use? Philip J. Newman Philip's Domain - Internet Project. http://www.philipsdomain.com/ [EMAIL PROTECTED] Phone: +64 25 6144012

Re: [PHP] phplib

2002-01-26 Thread Kunal Jhunjhunwala
Hi Nick, I found the solution. Thanks for your reply though. Basically, what I wanted to do was simple : the admin of my program can decided wether they want a feature on or off. Now, depending on that, a lil section of the html would change. Using phplib, I have seperated all my html from the

Re: [PHP] Re: Calculate Directory Size

2002-01-26 Thread Jeff Sheltren
I'm sorry, but I won't be much help on the windows side of things, but for UNIX, the job is already done for you! There is a utility called 'du', which will tell you the disk usage of a file (or a folder and its contents). Specifically, you would want to use the -s flag to specify only to show

[PHP] Changeing Dates.

2002-01-26 Thread Philip J. Newman
I have had no luck changing: 20020124020555 into 24 01 2002 @ 0205h 55s Can anyone put some light on this, I'm going nuts Philip J. Newman Philip's Domain - Internet Project. http://www.philipsdomain.com/ [EMAIL PROTECTED] Phone: +64 25 6144012

Re: [PHP] Changeing Dates.

2002-01-26 Thread Jeff Sheltren
Hi, provided that your initial string will always be in the same format (same # of numbers) I would use the substr function. substr(string, start, [length]) Ex: $mystring = 20020124020555; $year = substr($mystring,0,4); $month = substr($mystring,4,2); $day = substr($mystring,6,2); etc... Hope

[PHP] Re:[PHP] Changeing Dates.

2002-01-26 Thread Rafael Perazzo B Mota
function ChangeDate ($date) { $day=substr($date,6,2); //get the day $month=substr($date,4,2); //get the month $year=substr($date,0,4); //get the year $time=substr($date,8,4); //get the time $secs=substr($date,12,2); //get the seconds $ret=$day $month $year @ $time h $secs s;

Re: [PHP] Variables Limit

2002-01-26 Thread Craig Vincent
Is there any limit on the amount of variables that you can use? I can't say for certain as I don't know the insides of PHP *that* well...but I would guess your limitation on variables would be based on your server/user memory allowances and/or your memory limitations for PHP scripts. Sincerely,

[PHP] Javascript Parser?

2002-01-26 Thread saif
hi, is there any site from where i can get the php scripts which can parse the javascript or at lest document.write(ln) part into php echo variable so that i dont need to implement javascript in my web documents(i have some documents writen in javascript so that i can insert them in any doc but

Re: [PHP] Javascript Parser?

2002-01-26 Thread Richard S. Crawford
I'm not entirely sure I understand your question. Are you asking if there's an easy way to convert programs from JavaScript to PHP? saif wrote: hi, is there any site from where i can get the php scripts which can parse the javascript or at lest document.write(ln) part into php echo

Re: [PHP] I'm not sure how to do some simple code...

2002-01-26 Thread Philip Olson
Have a look around: http://www.php.net/strip_tags Regarding simple matches, consider: http://uk.php.net/stristr And who knows, maybe you want: http://us.php.net/htmlspecialchars Learn about if/else: http://au.php.net/else Regards, Philip Olson On Fri, 25 Jan 2002, Leif K-Brooks

Re: [PHP] Re:[PHP] Changeing Dates.

2002-01-26 Thread DL Neil
Or if you are retrieving the data from a database, use the SQL Date-Time functions (RTFM). =dn - Original Message - From: Rafael Perazzo B Mota [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: 26 January 2002 16:38 Subject: [PHP] Re:[PHP] Changeing Dates. function ChangeDate ($date) {

[PHP] getenv() replacement when running as ISAPI ???

2002-01-26 Thread Christian Blichmann
Hi there! Anybody knows a replacement for the built-in getenv()-function since it's not supported when running as an ISAPI-module under Internet Information Server 5.0 on Windows 2000 Professional (well, at least according to the manual). I've created a small counter that looks up the user's IP

[PHP] Error: symbol _erealloc not found, PHP 4.0.6 under Solaris/Sparc

2002-01-26 Thread Arcady Genkin
When trying to load Zend optimizer, the following error gets logged: Failed loading /var/www/lib/ZendOptimizer.so: ld.so.1: \ /opt/apache/bin/httpd: fatal: relocation error: file \ /var/www/lib/ZendOptimizer.so: symbol _erealloc: referenced \ symbol not found

Re: [PHP] Variables Limit

2002-01-26 Thread Nick Wilson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 * and then Philip J. Newman blurted Is there any limit on the amount of variables that you can use? Well I certainly agree with Craig, but I'm interested to know why you ask? Is it just idle curiosity or some interesting project you're

Re: [PHP] using a text file for variables in a form?

2002-01-26 Thread qartis
The HTML would be having problems because PHP would compile this: -- ? print 'INPUT TYPE=TEXT NAME=savings VALUE=' . $data[SAVINGS] . '; ? -- as: -- INPUT TYPE=TEXT NAME=savings VALUE=' -- Note VALUE's quotes: and '. Try with this: -- ? print 'INPUT TYPE=TEXT NAME=savings VALUE=' .

Re: [PHP] Variables Limit

2002-01-26 Thread Philip J. Newman
I have to exchage over 304 different names, codes, and dates ... - Original Message - From: Nick Wilson [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, January 27, 2002 7:35 AM Subject: Re: [PHP] Variables Limit -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 * and then

Re: [PHP] Variables Limit

2002-01-26 Thread Nick Wilson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 * and then Philip J. Newman blurted I have to exchage over 304 different names, codes, and dates ... 305? :-) Doesn't sound like it would be a problem. - -- Nick Wilson Tel:+45 3325 0688 Fax:+45 3325 0677 Web:

Re: [PHP] Variables Limit

2002-01-26 Thread Kurth Bemis
Unless your getting the values through a POST or a GET...both of these have limitesi forget what it is...maybe 1024 bytes? you'd jave to read the http rfc ~kurth On Sat, 2002-01-26 at 14:51, Nick Wilson wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 * and then Philip J. Newman

Re: [PHP] Variables Limit

2002-01-26 Thread Philip J. Newman
cool - Original Message - From: Nick Wilson [EMAIL PROTECTED] To: PHP-General [EMAIL PROTECTED] Sent: Sunday, January 27, 2002 8:51 AM Subject: Re: [PHP] Variables Limit -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 * and then Philip J. Newman blurted I have to exchage

[PHP] Any Ideas

2002-01-26 Thread Philip J. Newman
Any Ideas how I can remove !@#$%^*()_+=-';:/.,? charactors from a string? Philip J. Newman Philip's Domain - Internet Project. http://www.philipsdomain.com/ [EMAIL PROTECTED] Phone: +64 25 6144012

[PHP] Re: Any Ideas

2002-01-26 Thread qartis
I'm guessing something along the lines of: -- $string=str_replace(!,,$string); $string=str_replace(@,,$string); $string=str_replace(#,,$string); $string=str_replace($,,$string); $string=str_replace(%,,$string); $string=str_replace(^,,$string); -- etc. Philip J. Newman [EMAIL PROTECTED] wrote

[PHP] Re: Printing JPEG images generated with ImageJPEG with IE/WIN

2002-01-26 Thread David_Bourne
Hm, it could be that IE tries to reload the picture (which isn't there anymore because the form-data has been expired). Perhaps saving the picture temporarly on the server will prevent the problem. That could be what is happening. I'm generating data for students to analyze on one page with

Re: [PHP] Variables Limit

2002-01-26 Thread Michael Kimsal
Philip J. Newman wrote: I have to exchage over 304 different names, codes, and dates ... Instead of hundreds of discrete variables, would you not be better served by dividing them up into arrays of some sort? instead of $name1, $name2, etc $name[1] $name[2] or $name[first] $name[last]

[PHP] Re: Passing objects

2002-01-26 Thread Michael Kimsal
Dean Householder wrote: How can you pass an object from one page to another? Is there any convenient way to do it with PHP? Dean You've had some suggestions to use 'sessions' but you can't really pass an object between pages with sessions - UNLESS... Unless both pages have the

[PHP] Re: [PHP-DB] PHP + Postgresql + Linux = Frustration

2002-01-26 Thread Miles Thompson
Mike, This can be a bit frustrating, but all in all it's not too bad. I usually make up my own configuration file just to avoid re-typing everything, because I generally don't get it right the first time. I then chmod +x them so that they will execute. They're quite simple, just scripts that

[PHP] start

2002-01-26 Thread El Ucalito
Hello, im introducing to php and i need to know (under windows98) if are free /and where can i download it/ the software needed to program and test php4 Thanks everybody, Pablo.

Re: [PHP] start

2002-01-26 Thread Duncan Hill
On Fri, 3 Jan 1997, El Ucalito wrote: im introducing to php and i need to know (under windows98) if are free /and where can i download it/ the software needed to program and test php4 www.php.net will answer all. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail:

[PHP] Hints Feedback

2002-01-26 Thread Philip J. Newman
I know this isn't the right place to add this, but can someone check this out ... http://www.philipsdomain.com/hyperlinks/search.php ... and gimme some tips of what I could do ... Philip J. Newman Philip's Domain - Internet Project. http://www.philipsdomain.com/ [EMAIL PROTECTED] Phone: +64

RE: [PHP] Variables Limit

2002-01-26 Thread scott
Check out arrays... especially if you're going to be dealing with 304 individual variables. your code will be MUCH happier :) -Original Message- From: Philip J. Newman [mailto:[EMAIL PROTECTED]] Subject: Re: [PHP] Variables Limit I have to exchage over 304 different names, codes,

[PHP] PHP and XHTML

2002-01-26 Thread ,,,
When I have an ? xml version=1.0 ? inside my php script it wont work since php parses it as php code. Will short_open_tag = Off solve it? I would really like to use ? ? for the rest of my php code...there must be a better solution than Short_open_tag regards, Cyth -- PHP General Mailing

[PHP] PHP and XHTML

2002-01-26 Thread Frans Englich
When I have an ? xml version=1.0 ? inside my php script it wont work since php parses it as php code. Will short_open_tag = Off solve it? I would really like to use ? ? for the rest of my php code...there must be a better solution than Short_open_tag regards, Cyth -- PHP General Mailing

[PHP] Re: Hints Feedback

2002-01-26 Thread Michael Kimsal
Philip J. Newman wrote: I know this isn't the right place to add this, but can someone check this out ... http://www.philipsdomain.com/hyperlinks/search.php ... and gimme some tips of what I could do ... What are you asking for? -- PHP General Mailing List (http://www.php.net/) To

Re: [PHP] PHP and XHTML

2002-01-26 Thread Nick Wilson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 * and then ,,, blurted When I have an ? xml version=1.0 ? inside my php script it wont work since php parses it as php code. Will short_open_tag = Off solve it? I would really like to use ? ? for the rest of my php code...there must be a

Re: [PHP] Re: Hints Feedback

2002-01-26 Thread Nick Wilson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 * and then Michael Kimsal blurted What are you asking for? Yeah, a little detail please :) I don't even wana click it unless I know why, but then I'm just paranoid! - -- Nick Wilson Tel:+45 3325 0688 Fax:+45 3325 0677 Web:

Re: [PHP] PHP and XHTML

2002-01-26 Thread Jeff Sheltren
Hi. Have you tried something like: ? echo(? xml version=\1.0\ ?\n); ? I've not tried using xml php, but that may work... Jeff - Original Message - From: Frans Englich [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, January 26, 2002 2:53 PM Subject: [PHP] PHP and XHTML When

Re: [PHP] PHP and XHTML

2002-01-26 Thread Nick Wilson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 * and then Jeff Sheltren blurted Hi. Have you tried something like: ? echo(? xml version=\1.0\ ?\n); ? *Good* idea, tell us if it works! - -- Nick Wilson Tel:+45 3325 0688 Fax:+45 3325 0677 Web:www.explodingnet.com

Re: [PHP] Viral Marketing PHP (was Re: [PHP] Computer Science and PHP)

2002-01-26 Thread Manuel Lemos
Hello, Dl Neil wrote: One good point about what you said is that one budgetless what to promote PHP is to use 'viral marketing'. Viral marketing is a way to market something by using a technique that spreads by itself, ie, no additional effort or money needed to be spent by the

Re: [PHP] PHP and XHTML

2002-01-26 Thread Frans Englich
This works just perfectly: ?echo(?xml version=\1.0\?); ? regards, Cyth --- -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 * and then Jeff Sheltren blurted Hi. Have you tried something like: ? echo(? xml version=\1.0\ ?\n); ? *Good* idea, tell us if it

[PHP] File open with 4.1

2002-01-26 Thread Floyd Baker
I'm now using $S_REQUEST to pass things on a win32 with apache and php4.1. In touching stuff up on the isp however, things are incompatible. I have gone to using $HTTP_POST_VAR, etc. instead, so when the isp goes to 4.1 we only need to replace them with $_REQUEST. Is that the way to go?

[PHP] Re: getting a LAMP job in this economy

2002-01-26 Thread Manuel Lemos
Hello, Vincent Stoessel wrote: On another list that I am on someone made this very bold statement: I've seen a lot of jobs for ColdFusion Oracle or MS SQL server experience combinations. Don't let anyone fool you, PHP/MySQL is not going to land you a job [;)] now, as someone that

[PHP] Get FILE NAME and EXTENSION??

2002-01-26 Thread Dani
Hi everyone! I'm trying to put file names into variables which later I put into my DB (MySQL) as text (only the filename and the extension). I tried to use the upload format form before: form ENCTYPE=\multipart/form-data\ ... input type = FILE name =\file_name\ . When I

[PHP] Re: Any Ideas

2002-01-26 Thread Steve Edberg
Or do it all in one line: $string = ereg_replace('[!@#$%^*()_+=-';:/.,?]', '', $string); If you want to remove non-alphanumeric characters from a string, you can do: $string = ereg_replace('[^[:alnum:]]', '', $string); Perl-compatible regular expressions would work as well,

[PHP] Problems with Parent Child References

2002-01-26 Thread Kevin Morris
I've designed an architecture in PHP which is dependent on a class hierarchy which has a parent class with a member variable which is a child object. That child object contains a reference back to the parent. The problem I'm running into is changes to the parent's member variables are not

[PHP] Control Panel

2002-01-26 Thread karthikeyan
Hi Guys, I want a affordable and the best control panel for my website. Though i can make it myself but it make some time to do that. Do any of you guys and gals know about this do let me know. Looking forward for yours earliest reponse. karthikeyan.

php-general Digest 27 Jan 2002 02:33:30 -0000 Issue 1135

2002-01-26 Thread php-general-digest-help
php-general Digest 27 Jan 2002 02:33:30 - Issue 1135 Topics (messages 82211 through 82262): Banner agencies - OT 82211 by: Boaz Yahav Using HTTP Post variables with multiple domains and scripts 82212 by: Dreamriver.com Re: break statement usage 82213 by: DL Neil

Re: [PHP] Get FILE NAME and EXTENSION??

2002-01-26 Thread Jason Wong
On Sunday 27 January 2002 11:10, Dani wrote: Hi everyone! I'm trying to put file names into variables which later I put into my DB (MySQL) as text (only the filename and the extension). I tried to use the upload format form before: form ENCTYPE=\multipart/form-data\ ... input

Re: [PHP] Control Panel

2002-01-26 Thread Miles Thompson
Spare us1 Miles Thompson On Saturday 26 January 2002 09:39 pm, karthikeyan wrote: Hi Guys, I want a affordable and the best control panel for my website. Though i can make it myself but it make some time to do that. Do any of you guys and gals know about this do let me know.

Re: [PHP] PHP and XHTML

2002-01-26 Thread Tom Rogers
Hi use single quotes and it is simpler echo '?xml version=1.0?'; Tom At 09:40 27/01/02, Frans Englich wrote: This works just perfectly: ?echo(?xml version=\1.0\?); ? regards, Cyth --- -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 * and then Jeff Sheltren

RE: [PHP] Re: Any Ideas

2002-01-26 Thread Alok K. Dhir
Regula $string=preg_replace(/\W/,,$string); \W = non-word characters in perl regular expressions. Word characters are 0-9, a-z, A-Z, and _. To kill _ as well, do: $string=preg_replace(/[_\W]/,,$string); -Original Message- From: [EMAIL PROTECTED]

[PHP] Arrrr The Space is gone.

2002-01-26 Thread Philip J. Newman
$q=preg_replace(/[_\W]/,,$q); I have this to remove all the bad things, but it takes out the space to ... )o; why? Philip J. Newman Philip's Domain - Internet Project. http://www.philipsdomain.com/ [EMAIL PROTECTED] Phone: +64 25 6144012

[PHP] Re: getting a LAMP job in this economy

2002-01-26 Thread michael kimsal
Manuel Lemos wrote: You seem to be just a bit 'doom and gloom'. Perhaps you're just in 'realist' mode, but I don't think it's a 'fait accomplit' just yet. Since the massive bankrupcy of many Internet companies, LAMP is no longer so much on demand. What happened is that most of those

[PHP] Re: Arrrr The Space is gone.

2002-01-26 Thread CC Zona
In article 002801c1a6ed$1a9c10a0$0401a8c0@philip, [EMAIL PROTECTED] (Philip J. Newman) wrote: $q=preg replace(/[ \W]/,,$q); I have this to remove all the bad things, but it takes out the space to ... )o; why? There's a space in your character class, so of course it will be among the

Re: [PHP] Re: Arrrr The Space is gone.

2002-01-26 Thread Philip J. Newman
This returns an error $q=preg replace(/[^ \w]/,,$q); Parse error: parse error in d:\hosting\http\philipsdomain\config.php on line 41 Suggestions? - Original Message - From: CC Zona [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, January 27, 2002 6:15 PM Subject: [PHP] Re: A

Re: [PHP] Re: Arrrr The Space is gone.

2002-01-26 Thread CC Zona
In article 004d01c1a6f2$cb909070$0401a8c0@philip, [EMAIL PROTECTED] (Philip J. Newman) wrote: This returns an error $q=preg replace(/[^ \w]/,,$q); Parse error: parse error in d:\hosting\http\philipsdomain\config.php on line 41 Suggestions? I think ezmlm must strip underscores from

[PHP] what's equivalent of DBI quote

2002-01-26 Thread Peter J. Schoenster
Hi, Seems mysql_escape_string will just escape, seems like addslashes and quotemeta. quote in DBI will escape and quote if passed value is not an integer (don't know about float). Peter --- Reality is that which, when you stop believing in it, doesn't go away.

[PHP] On the fly unzipping

2002-01-26 Thread sean
Hello, I was hopping that one of you would know how to setup a self-extracting php program. This is the story: I'd like to offer a zipped file for download. Someone unzips it on their PC and there find two files, extractor.php and some other file that php can unzip. They upload these two

[PHP] PHP in the University and Corporation [was RE: [PHP] Computer Science and PHP]

2002-01-26 Thread Chris Lott
Computer science is considered an engineering discipline in most institutions. And I think that's good... we need people out there to develop OS's, create database servers, etc. PHP can be effectively used in this curriculum, but C seems a lot more to the point. The place where PHP could (and

RE: [PHP] Re: getting a LAMP job in this economy

2002-01-26 Thread Chris Lott
It's hard, I think in part, because of the reputation PHP is getting in some circles. Many of the people evangelizing it don't know anything else, and simply extoll all the 'wonderful' virtues of it. YES! This poisoning of the well has happened and continues to happen. The problem is

Re: [PHP] Re: getting a LAMP job in this economy

2002-01-26 Thread michael kimsal
Chris Lott wrote: It's hard, I think in part, because of the reputation PHP is getting in some circles. Many of the people evangelizing it don't know anything else, and simply extoll all the 'wonderful' virtues of it. YES! This poisoning of the well has happened and continues to happen.

RE: [PHP] Re: getting a LAMP job in this economy

2002-01-26 Thread John Lewis
I like this view. It's not so much a technology we're all speaking as much as a language. Computers are computers and while linux is fun and kick's ass sometimes you just need to get a job done. tools are tools and php rules until php rules! john l It's hard, I think in part, because of the