Re: [PHP] Re: Need Help with register_globals OFF

2002-08-03 Thread Monty
Thanks for the tips, Justin. Sounds like a good idea. Do you, or anyone, know if the $_POST vars stay defined even after moving on to another page? Do I also need to unset $_POST after passing the vars each time? From: [EMAIL PROTECTED] (Justin French) Newsgroups: php.general Date: Sat, 03

Re: [PHP] isset($var) !empty($var) same time!

2002-08-03 Thread lallous
Just use empty() ?! With error_reporting(E_ALL) you'll get a bunch of warnings if you only use empty() w/o the isset() ! use isset() first and then check wheter empty or not empty! so there is not one function that tests for empty and isset same time!? Elias Analysis Solutions [EMAIL

Re: [PHP] Re: My SQL speed.

2002-08-03 Thread Ilia A.
On August 3, 2002 12:54 am, Jason Stechschulte wrote: On Sat, Aug 03, 2002 at 01:49:10AM -0300, Manuel Lemos wrote: Google has 1 billion pages and qurys in a few milliseconds... Real search engines do not use SQL databases. What do search engines use? Is there something out there that

[PHP] Re: Protect PHP coding

2002-08-03 Thread lallous
any windows version of this product? Manuel Lemos [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Hello, On 08/02/2002 11:06 AM, Lallous wrote: So... Is this equivalent to Zend Encoder? Not exactly, but in some aspects it is/will be better like the

Re: [PHP] isset($var) !empty($var) same time!

2002-08-03 Thread Verdana Musone
I always set error_reporting(E_ALL) oR error_reporting(2047), but i have never got any errors when just use empty() to determine whether a variable is set. If the variable is: 0, null, not set or an empty string. Then the empty() will return true. It's unnecessary to call isset() first.

Re: [PHP] PHP Hosting

2002-08-03 Thread Liam MacKenzie
File permissions. Each user has their own username, but all are a member of the group hosting They can CHMOD their files to whatever they like, so security is really up to them. And PHP's Safe mode of course. - Original Message - From: Matt Babineau [EMAIL PROTECTED] To: [EMAIL

Re: [PHP] isset($var) !empty($var) same time!

2002-08-03 Thread lallous
because your variable is set already! try doing this: echo empty($asdadadadadadasd); you will get a warning and have a FALSE value. Elias Verdana Musone [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... I always set error_reporting(E_ALL) oR

Re: [PHP] isset($var) !empty($var) same time!

2002-08-03 Thread Verdana Musone
I had given a try on your code, But it really output 1, a true value. I used PHP 4.2.2+Apache 1.3.26 under Win2K. And u? - Original Message - From: lallous Sent: 2002Äê8ÔÂ3ÈÕ 16:19 To: [EMAIL PROTECTED] Subject: Re: [PHP] isset($var) !empty($var) same time! because your variable is

[PHP] Include php code as variable

2002-08-03 Thread Alawi
How can I Include my php code code as variable and excute it ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Protect PHP coding

2002-08-03 Thread Manuel Lemos
Hello, On 08/03/2002 05:41 AM, Lallous wrote: any windows version of this product? AFAIK, you compile it for Windows. I was also told that is a major headache. Anyway, don't despair, it seems that some developers are working on providing already compiled PECL extensions that can be

Re: [PHP] Include php code as variable

2002-08-03 Thread Danny Shepherd
http://www.php.net/eval - Original Message - From: Alawi [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, August 03, 2002 11:41 AM Subject: [PHP] Include php code as variable How can I Include my php code code as variable and excute it ? -- PHP General Mailing List

Re: [PHP] Re: Protect PHP coding

2002-08-03 Thread Andrey Hristov
So... Is this equivalent to Zend Encoder? Not exactly, but in some aspects it is/will be better like the ability to generate executable standalone PHP programs that you can distribute independently. There is also the question of the price that for Zend Encoder is ridiculously expensive.

Re: [PHP] string questions

2002-08-03 Thread Danny Shepherd
Try, list($test)=explode(' ',$address); HTH Danny - Original Message - From: webmaster [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, August 02, 2002 5:35 PM Subject: [PHP] string questions I know there has to be an easy way to do this, but I just can't find the answer.

[PHP] virtual hosting using php as apache module

2002-08-03 Thread Ryan
Hi everybody, I would like to know how to make the directive user/group in virtualhost working with php. I prefer to use php as modules but not cgi, as it is more handy and easy for upgrade. How to do that ? Thx ! Regards, Ryan -- PHP General Mailing List (http://www.php.net/) To

Re: [PHP] Re: Protect PHP coding

2002-08-03 Thread Manuel Lemos
Hello, On 08/03/2002 09:16 AM, Andrey Hristov wrote: So... Is this equivalent to Zend Encoder? Not exactly, but in some aspects it is/will be better like the ability to generate executable standalone PHP programs that you can distribute independently. There is also the question of the price

Re: [PHP] ODBC

2002-08-03 Thread John Lim
Have a look at http://php.weblogs.com/adodb_csv Bob Lockie [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Can PHP be used on an Apache server (linux) to connect to a (remote) MS Access server (NT) through ODBC? Yes. If so, does anyone have examples

[PHP] alternative to phpadsnew?

2002-08-03 Thread Andy
Hi there, I am searching for a way to track advertisment, clickrates on my site. So I tryed out phpadsnew http://sourceforge.net/projects/phpadsnew/ Unfortunatelly the current beta 7 works only with register globals set to on. I cant install it in this case, because my application requires this

[PHP] what is equivalent to Response.End ?

2002-08-03 Thread Ing. Rajesh Kumar
Hi everybody Can someone tell me what is the PHP equivalent code to ASP's Response.End ? I want to stop my code at a given position so i need this. thanks in advance Raja -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Protect PHP coding

2002-08-03 Thread Dennis Moore
Everyone understands that Zend has to eat, but so do most of us small developers. I have no problem with them charging for their products. IMO they would make more money if the pricing for the encoder would be less. This is a fundamental feature that most of us need. I would offer a Pro

RE: [PHP] alternative to phpadsnew?

2002-08-03 Thread Maxim Maletsky
You can track ads with phpAdsNew also remotely, not necessarily via view() function. Maxim Maletsky PHP Beginner www.phpbeginner.com -Original Message- From: Andy [mailto:[EMAIL PROTECTED]] Sent: Saturday, August 03, 2002 4:44 PM To: [EMAIL PROTECTED] Subject: [PHP] alternative to

Re: [PHP] alternative to phpadsnew?

2002-08-03 Thread Andy
what do u mean by that. I would like to install this software on the same server. I guess you mean installing it on another server - remotly? Andy Maxim Maletsky [EMAIL PROTECTED] schrieb im Newsbeitrag 001601c23afe$8e0df9e0$1113fe17@dominanta">news:001601c23afe$8e0df9e0$1113fe17@dominanta...

Re: [PHP] what is equivalent to Response.End ?

2002-08-03 Thread Danny Shepherd
http://php.net/die http://php.net/exit Both will stop your code. Dead. Danny. - Original Message - From: Ing. Rajesh Kumar [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, August 03, 2002 3:50 PM Subject: [PHP] what is equivalent to Response.End ? Hi everybody Can someone

[PHP] Re: what is equivalent to Response.End ?

2002-08-03 Thread Lars Olsson
Hi! try exit() (http://www.php.net/exit) or die() (http://www.php.net/die) Kindly /lasso ([EMAIL PROTECTED]) Ing. Rajesh Kumar wrote: Hi everybody Can someone tell me what is the PHP equivalent code to ASP's Response.End ? I want to stop my code at a given position so i need this.

[PHP] Install

2002-08-03 Thread Nick Niehoff
I have followed the instructions to install php4 on both apache 1.3.x and 2.0.x, both fail. I am running RedHat 7.2, Apache 2.0.39. I am trying to install php4.2.2. When I type 'make install' at the command it goes through its little thing and then says: ./.libs/libphp4.a(zend_execute.lo): In

[PHP] Re: Include php code as variable

2002-08-03 Thread CC Zona
In article 00d501c23ada$87050590$3404a8c0@alawi, [EMAIL PROTECTED] (Alawi) wrote: How can I Include my php code code as variable and excute it ? include() can return a value, assignable to a variable. Some other ways to get the content of a file (I assume that's why you're saying include)

[PHP] PHP and multiple page .tiffs

2002-08-03 Thread Joseph Szobody
Is there a way for PHP to look at a local multiple-page .tiff file and find out haw many page it has? Thanks, Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] RegEx (back referencing)

2002-08-03 Thread Phil Ewington
Hi, I am am writing a function to color code and indent JavaScript source using regular expressions and cannot seem to get back referencing working. The pattern match is successful but the output is a single unrecognised character (a square). $string = eregi_replace((/?)(scr[^]*), «font

Re: [PHP] Install

2002-08-03 Thread EdwardSPL
Try this site : http://www.linuxguruz.org/z.php?id=32h=php+mysql+apache Nick Niehoff wrote: I have followed the instructions to install php4 on both apache 1.3.x and 2.0.x, both fail. I am running RedHat 7.2, Apache 2.0.39. I am trying to install php4.2.2. When I type 'make install' at

Re: [PHP] Install

2002-08-03 Thread Bob Lockie
What is your configure command? I have followed the instructions to install php4 on both apache 1.3.x and 2.0.x, both fail. I am running RedHat 7.2, Apache 2.0.39. I am trying to install php4.2.2. When I type 'make install' at the command it goes through its little thing and then says:

Re: [PHP] RegEx (back referencing)

2002-08-03 Thread Danny Shepherd
try \\1 - Original Message - From: Phil Ewington [EMAIL PROTECTED] To: PHP General [EMAIL PROTECTED] Sent: Saturday, August 03, 2002 5:03 PM Subject: [PHP] RegEx (back referencing) Hi, I am am writing a function to color code and indent JavaScript source using regular expressions

RE: [PHP] Re: Protect PHP coding

2002-08-03 Thread Acer
There is a free php accelerator so I don't know why you would pay for one. www.php-accelerator.co.uk The same guy (Nick) has also just made an encoder. It is in beta testing right now and there's no windows version yet but that should be coming soon. I think it's like $0.50 to encode your

RE: [PHP] Re: Protect PHP coding

2002-08-03 Thread Rasmus Lerdorf
You'll never hear anything from the core php group since they are a tight click so it's business as usual. That's probably the most uninformed statement I have seen posted to this list in a very long time. -Rasmus -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] RegEx (back referencing)

2002-08-03 Thread Danny Shepherd
If you're trying to get scriptLots of javascript/script to look like font color=maroonLots of javascript/font then this will be a start $string = eregi_replace('(/?)(scr[^]*)', '\\1font color=maroon',$string); This will produce - font color=maroonLots of javascript/font color=maroon - not

RE: [PHP] RegEx (back referencing)

2002-08-03 Thread Phil Ewington
What's strange is that doing an ord($string) returns 171, which is a '1/2' char. So why does PHP convert the pattern match?? -Original Message- From: Phil Ewington [mailto:[EMAIL PROTECTED]] Sent: 03 August 2002 17:04 To: PHP General Subject: [PHP] RegEx (back referencing) Hi,

php-general Digest 3 Aug 2002 17:16:33 -0000 Issue 1503

2002-08-03 Thread php-general-digest-help
php-general Digest 3 Aug 2002 17:16:33 - Issue 1503 Topics (messages 110933 through 110972): Re: My SQL speed. 110933 by: Manuel Lemos 110934 by: Maxim Maletsky 110941 by: Ilia A. Re: Need Help with register_globals OFF 110935 by: Monty 110937 by:

RE: [PHP] Re: Protect PHP coding

2002-08-03 Thread Acer
I made that statement because this subject has been brought up several times and nothing has been said from the php gods. I mean out of this whole thread, your only comment is That's probably the most uninformed statement I have seen posted to this list in a very long time. -Original

RE: [PHP] RegEx (back referencing)

2002-08-03 Thread Phil Ewington
Danny, It still doesn't work, could this be a problem in 4.0.4pl1 ?? -Original Message- From: Danny Shepherd [mailto:[EMAIL PROTECTED]] Sent: 03 August 2002 18:11 To: [EMAIL PROTECTED]; PHP-General Subject: Re: [PHP] RegEx (back referencing) If you're trying to get scriptLots

Re: [PHP] RegEx (back referencing)

2002-08-03 Thread Danny Shepherd
What does the input string contain? What does the output look like? It might be a problem with php4.0.4 (I'm using 4.2.2) - why such an old version? Danny. - Original Message - From: Phil Ewington [EMAIL PROTECTED] To: PHP General [EMAIL PROTECTED] Sent: Saturday, August 03, 2002 6:23

RE: [PHP] Re: Protect PHP coding

2002-08-03 Thread Scott
On Sat, 3 Aug 2002, Acer wrote: You'll never hear anything from the core php group since they are a tight click so it's business as usual. You're kidding, right? When was the last time you saw one the creator of ASP on a mailing list personally answering code questions? For what it's

RE: [PHP] Re: Protect PHP coding

2002-08-03 Thread Acer
Don't get me wrong rasmus, I don't have any problems with you. It's just fishy when some guy in the UK was able to put together a php accelerator for free and a php encoder for $0.50 a pop while zend is charging several thousands. You have to wonder how much work zend is actually putting into

[PHP] encoders

2002-08-03 Thread Bob Lockie
Can someone point me to some articles on PHP encoding? It would seem to me that making an interpreted language impossible to read an impossible task. Hard to read would be possible. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Regular Expressions (PCRE library)

2002-08-03 Thread Jürgen
Hello! It´s driving me nuts, am in the middle of reading Mastering Regular Expressions (O'Reilly), and because i like to learn whilst doing, well, you can picture the rest. Anybody please tell me why the following is not working $test = Hello, end why is not workin, END.; //before echo $test

RE: [PHP] Re: Protect PHP coding

2002-08-03 Thread Rasmus Lerdorf
There are nearly 600 people with cvs commit access to cvs.php.net. Saying that Zend are the ones building PHP is a gross injustice to the majority of the people working on PHP. I have absolutely no relationship with Zend and I have built big chunks of PHP as have countless others with nothing

RE: [PHP] Re: Protect PHP coding

2002-08-03 Thread Rasmus Lerdorf
Because it is a silly thread and I shouldn't be replying at all. Others in the group either have more sense or have given up on answering php-general questions. My view on encoders is that they are unnecessary and rather evil. I would never ever purchase a php-based application that did not

Re: [PHP] Regular Expressions (PCRE library)

2002-08-03 Thread Jason Wong
On Sunday 04 August 2002 01:44, Jürgen wrote: Anybody please tell me why the following is not working $test = Hello, end why is not workin, END.; //before echo $test . br; //Finds beginning of a line, followed by e or E, and replaces it with A. At least it should do it, but it doesn't

[PHP] Include problems

2002-08-03 Thread Scott
I have PHP4 on both a windows IIS server and a windows apache server. The include function only works in the same directory of the file I wish to access. ex. www.include.com/default.php all files in same directory (i guess the root)? ?php include 'test.inc' ? everything works fine. Here's

[PHP] Re: Include problems

2002-08-03 Thread Peter
try using the absolute path to the file e.g. include(C:/windows/webserver/httproot/inc/test.inc); Scott [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... I have PHP4 on both a windows IIS server and a windows apache server. The include function only works in the

RE: [PHP] Include problems

2002-08-03 Thread Daniel Kushner
include 'inc/test.inc' will work fine if you add your root directory to your include_path (in the c:\winnt\php.ini file). Daniel Kushner [EMAIL PROTECTED] Need hosting? http://www.TheHostingCompany.us/ -Original Message- From: Scott [mailto:[EMAIL PROTECTED]] Sent: Saturday, August

[PHP] starting Apache

2002-08-03 Thread Nick Niehoff
I finally got php 4.2.2 installed with Apache 2.0.39 on RedHat 7.2. However when I restart the httpd service, I get the following error: Starting httpd: Syntax error on line 230 of /www/conf/httpd.conf: Cannot load /www/modules/libphp4.so into server: /www/modules/libphp4.so: undefined symbol:

[PHP] User Authentication Problem

2002-08-03 Thread Tony Harrison
Hi, I need to authenticate users on an included page on my website, but the problem is, I cant get it to work. view it included at http://members.lycos.co.uk/ajohnh/ (Source at http://members.lycos.co.uk/ajohnh/source/index.txt) the actual file:

RE: [PHP] Re: Protect PHP coding

2002-08-03 Thread Maxim Maletsky
Well said, Rasmus. - Maxim Maletsky -Original Message- From: Rasmus Lerdorf [mailto:[EMAIL PROTECTED]] Sent: Saturday, August 03, 2002 8:06 PM To: Acer Cc: [EMAIL PROTECTED] Subject: RE: [PHP] Re: Protect PHP coding Because it is a silly thread and I shouldn't be replying at all.

Re: [PHP] Regular Expressions (PCRE library)

2002-08-03 Thread Jürgen
Well, i know it should work, but it does not work. Even if i Change the first letter into e or E it does not work. This is so frustrating, this is prolly the most easiest regular expression i could start with and yet i fail and nobody seems to know why it aint working neither This should

Re: [PHP] RegEx (back referencing)

2002-08-03 Thread Danny Shepherd
Ok, a very slightly modified version of your first attempt should work then $fcontent = eregi_replace((/?)(scr[^]*), «font color=maroon»\\0«/font», $fcontent); Note the \\0 instead of \\1 HTH Danny. - Original Message - From: Phil Ewington [EMAIL PROTECTED] To: Danny Shepherd [EMAIL

[PHP] Re: starting Apache

2002-08-03 Thread Kirk Babb
I also received an error regarding libphp4.so when I tried to compile php 4.2.2 with apache 2.0.39 on Mandrake 8.1. Have not resolved it, even after asking several days ago on this site. Nobody responded. Have double checked my ./configure and everything looks good, it is when I execute the

Re: [PHP] Regular Expressions (PCRE library)

2002-08-03 Thread Jason Wong
On Sunday 04 August 2002 03:47, Jürgen wrote: Well, i know it should work, but it does not work. Even if i Change the first letter into e or E it does not work. This is so frustrating, this is prolly the most easiest regular expression i could start with and yet i fail and nobody seems to

RE: [PHP] Re: Protect PHP coding

2002-08-03 Thread Bob Lockie
My view on encoders is that they are unnecessary and rather evil. I would never ever purchase a php-based application that did not come with the php source code. If you want to restrict your code somehow, do it through a license. People who choose to violate that license are the same people

Re: [PHP] Re: starting Apache

2002-08-03 Thread Jason Wong
On Sunday 04 August 2002 04:02, Kirk Babb wrote: I also received an error regarding libphp4.so when I tried to compile php 4.2.2 with apache 2.0.39 on Mandrake 8.1. Have not resolved it, even after asking several days ago on this site. Nobody responded. Have double checked my ./configure

Re: [PHP] Re: starting Apache

2002-08-03 Thread Bob Lockie
Version 2 of Apache does not support PHP yet. Go back to version 1 and ask the list if you still have problems. I also received an error regarding libphp4.so when I tried to compile php 4.2.2 with apache 2.0.39 on Mandrake 8.1. Have not resolved it, even after asking several days ago on this

Re: [PHP] Re: Protect PHP coding

2002-08-03 Thread Jason Wong
On Sunday 04 August 2002 04:38, Bob Lockie wrote: My view on encoders is that they are unnecessary and rather evil. I would never ever purchase a php-based application that did not come with the php source code. If you want to restrict your code somehow, do it through a license. People who

Re: [PHP] Include problems

2002-08-03 Thread Scott
Does this mean i have to do this to each site??? Daniel Kushner [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... include 'inc/test.inc' will work fine if you add your root directory to your include_path (in the c:\winnt\php.ini file). Daniel Kushner

[PHP] Re: User Authentication Problem

2002-08-03 Thread Monty
You might get some help if you post only the code relevant to the problem with a clear explanation of the exact problem. Otherwise, I doubt anyone will bother looking through all that code you posted links to. From: [EMAIL PROTECTED] (Tony Harrison) Newsgroups: php.general Date: Sat, 3 Aug

Re: [PHP] Regular Expressions (PCRE library)

2002-08-03 Thread Jürgen
No im not saying that, im merely saying that in my given example even if i turn the Hello into Ello it does not replace it, besides : ^ = assert start of subject (or line, in multiline mode) * I

Re: [PHP] Re: Need Help with register_globals OFF

2002-08-03 Thread Monty
Well, I just upgraded a number of PHP scripts to function with register_globals turned off, and now better understand what's required to work with variables more securely. I wanted to share that the extract() command turned out to be a big help. Using it meant I didn't have to put $_POST[' ']

RE: [PHP] Re: Protect PHP coding

2002-08-03 Thread Acer
Scott wrote: You're kidding, right? When was the last time you saw one the creator of ASP on a mailing list personally answering code questions? Call me a cynic but to maintain your status as php god you have to contribute to the list so you can sign a book deal. Scott wrote: For what it's

Re: [PHP] Re: Protect PHP coding

2002-08-03 Thread Danny Shepherd
So, go write JSP for someone then and stop bugging us. - Original Message - From: Acer [EMAIL PROTECTED] To: Scott [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Saturday, August 03, 2002 10:48 PM Subject: RE: [PHP] Re: Protect PHP coding Scott wrote: You're kidding, right? When was

RE: [PHP] Re: Protect PHP coding

2002-08-03 Thread Acer
Okay great let me change my opinion to php is being built by 600 people who do a lot of infighting. I feel much better. -Original Message- From: Rasmus Lerdorf [mailto:[EMAIL PROTECTED]] Sent: August 3, 2002 1:50 PM To: Acer Cc: [EMAIL PROTECTED] Subject: RE: [PHP] Re: Protect PHP

RE: [PHP] Re: Protect PHP coding

2002-08-03 Thread Acer
Okay so you support zend but hate encoders. Doesn't zend make an encoder? To me an encoder is used to sell your product. It doesn't mean people still won't release their code to add to the public knowledge. If you didn't release your code rasmus then those 600 people won't have made php what

RE: [PHP] Re: Protect PHP coding

2002-08-03 Thread Acer
Sorry for bothering you, I didn't think I would hit a nerve. -Original Message- From: Danny Shepherd [mailto:[EMAIL PROTECTED]] Sent: August 3, 2002 5:59 PM Cc: [EMAIL PROTECTED] Subject: Re: [PHP] Re: Protect PHP coding So, go write JSP for someone then and stop bugging us. -

[PHP] __functionName?

2002-08-03 Thread Jim Dam
I know that a function name preceded by 2 underscores (__) has 'magical' properties when declared in a class. My question is, is it safe to declare a function with 2 underscores before its name outside of a class? For example, if this is my whole script. ?PHP function __hello () { echo

[PHP] register_argc_argv

2002-08-03 Thread Monty
What does this parameter do in PHP.ini, and what would happen if I turned it off? From reading the PHP site, it appears this is only useful if you use PHP from the command line, is that right? Thanks. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] Include problems

2002-08-03 Thread ::: Flavio Bastos Amiel::::::
does the require has something to be with include ? Cause instead of using include im always usin require Thanks, Flavio Bastos Amiel Scott [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Does this mean i have to do this to each site??? Daniel Kushner

[PHP] May i?

2002-08-03 Thread ::: Flavio Bastos Amiel::::::
May i ask for help about a subejct on MySQL here? thanks, Flavio Bastos Amiel -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Re: Protect PHP coding

2002-08-03 Thread Maxim Maletsky
Call me a cynic but to maintain your status as php god you have to contribute to the list so you can sign a book deal. Cynic? Rather paranoid Scott wrote: For what it's worth, I just left a 50,000 employee company that would not let me use PHP in production until I showed them the Zend

RE: [PHP] Re: Protect PHP coding

2002-08-03 Thread Maxim Maletsky
Acer, what the fk are you mumbling about? (sorry for mine to you introduction) 600 people at PHP Dev Group (and I am one of them too) create and document PHP Programming Language for free, because they like it this way. You, get your boss's money, buy a Zend's encoder, make a script that,

RE: [PHP] Include problems

2002-08-03 Thread Maxim Maletsky
Include and require are identical, except for their failure behavior - require() halts permanently ending execution of the script. Sincerely, Maxim Maletsky PHP Beginner www.phpbeginner.com -Original Message- From: ::: Flavio Bastos Amiel:: [mailto:[EMAIL PROTECTED]] Sent:

Re: [PHP] Include problems

2002-08-03 Thread ::: Flavio Bastos Amiel::::::
Thanks Maxim, it is good to know! :) Flavio Bastos Amiel Maxim Maletsky [EMAIL PROTECTED] wrote in message 000401c23b48$55266960$1113fe17@dominanta">news:000401c23b48$55266960$1113fe17@dominanta... Include and require are identical, except for their failure behavior - require() halts

[PHP] Safe Mode seems to turn on and off randomly

2002-08-03 Thread Andrew Brampton
Hi, I was discussing with a friend at a webhost I use and they have been experience a wierd problem recently with their php safe mode, I went to help and after spending a while in the bug database I couldn't find anything to explain it. Basically every time you view a phpinfo page it will

[PHP] Re: May i?

2002-08-03 Thread George Nicolae
ask. -- Best regards, George Nicolae IT Manager ___ PaginiWeb.com - Professional Web Design www.PaginiWeb.com ::: Flavio Bastos Amiel:: [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... May i ask for help about a subejct on MySQL here?

[PHP] Decode email

2002-08-03 Thread support-bot
Hi Anyone know a good email decoder (function or class) that can split the any email to subject, from, to , body and attachments ? Thank You ___ http://www.SaudiABM.com ___ About Islam : http://home2.swipnet.se/~w-20479/Audio.htm http://sultan.org

[PHP] Php manual

2002-08-03 Thread support-bot
Where can I download the php manual with the user notes (in html format) Thank You ___ http://www.SaudiABM.com ___ About Islam : http://home2.swipnet.se/~w-20479/Audio.htm http://sultan.org ___ -- PHP General Mailing List

[PHP] Re: May i?

2002-08-03 Thread ::: Flavio Bastos Amiel::::::
let's see if i can do it... i got a news site. everything was going OKsometimes i made few testing and then i delete the content from the db... the problem is next: the item id is an auto_increment element .. so the id's wasn't going allrightbecause they where not true... sometimes

RE: [PHP] Decode email

2002-08-03 Thread Maxim Maletsky
Try looking for it on www.phpclasses.org - it is pretty rich for such content. Sincerely, Maxim Maletsky PHP Beginner www.phpbeginner.com -Original Message- From: info @ saudiabm [mailto:[EMAIL PROTECTED]] On Behalf Of support- [EMAIL PROTECTED] Sent: Sunday, August 04, 2002

RE: [PHP] Re: May i?

2002-08-03 Thread Maxim Maletsky
Why do you need it anyway? auto_increment is a mySQL functionality to (listen this carefully) KEEP UNICITY WITHIN A TABLE. This is what they are needed for. I agree - it would look prettier having them even sequential, but that is behind the real point and it is not a problem. You should make

Re: [PHP] Re: May i?

2002-08-03 Thread Jason Stechschulte
On Tue, Sep 03, 2002 at 08:27:37PM -0400, ::: Flavio Bastos Amiel:: wrote: i tried to delete that cell (id) and then i recreate it. thinking the id was going to count it all over and make the item id TRUE.but it wasn't like that, the new id was counting since the last id then if the

Re: [PHP] Re: May i?

2002-08-03 Thread ::: Flavio Bastos Amiel::::::
well... yes, then maybe i made a mistake there was data related to the id . then i delete that row and the data that was related to the comments are gone away, because the row id has changedso i would have to put then manually again Flavio Bastos Amiel Maxim Maletsky

Re: [PHP] Re: Protect PHP coding

2002-08-03 Thread Justin French
on 03/08/02 11:57 PM, Manuel Lemos ([EMAIL PROTECTED]) wrote: The people for Zend have to eat to live. And don't we all? That is the main problem. If we need to pay USD $3,000 to be able to compile our PHP programs, doesn't that make not viable for most of us to sell our PHP programs as

Re: [PHP] Re: Protect PHP coding

2002-08-03 Thread Justin French
on 04/08/02 3:30 AM, Acer ([EMAIL PROTECTED]) wrote: Don't get me wrong rasmus, I don't have any problems with you. It's just fishy when some guy in the UK was able to put together a php accelerator for free and a php encoder for $0.50 a pop while zend is charging several thousands. You

RE: [PHP] Re: Protect PHP coding

2002-08-03 Thread Maxim Maletsky
'==' is not an associative operator. Read on: http://www.php.net/manual/en/language.operators.php Sincerely, Maxim Maletsky PHP Beginner www.phpbeginner.com -Original Message- From: Acer [mailto:[EMAIL PROTECTED]] Sent: Sunday, August 04, 2002 3:38 AM To: Maxim Maletsky;

[PHP] Session problem with https

2002-08-03 Thread Andre Dubuc
I've followed the threads on sessions, and discovered, to my horror, that I was passing the session id through cookies. Attempting to repair this 'problem' has been fun (with 200+ files). Somehow, the session variables are not passing through once they encounter an https page. I'm using the

Re: [PHP] Re: Protect PHP coding

2002-08-03 Thread Justin French
on 04/08/02 8:01 AM, Acer ([EMAIL PROTECTED]) wrote: Sorry for bothering you, I didn't think I would hit a nerve. Didn't think you'd hit a nerve? You're complaining profusely about the price charged for a commercial product, and bagging the crap out of the developers, contributors and people

[PHP] parse_str () problems. using on the command line args ( argv[1]) - problem with php-4.2.2 ??

2002-08-03 Thread Neil
Hello All I am trying to use parse_str in my script , passing a variable. I have old code, working with php 4.1.2 working with the following script : [root@zion kickstart]# cat make-kickstart.php #!/usr/local/bin/php -q ? // parse any arguments parse_str ($argv[1]) ; print NAME: $name \n;

Re: [PHP] Re: Protect PHP coding

2002-08-03 Thread Chris Shiflett
1. You complain about Zend charging for a product when someone else has created an equivalent open source product. 2. You support ColdFusion and ASP when someone else has created an equivalent open source product. The point is that you need better logic in your arguments before you will

RE: [PHP] Re: Protect PHP coding

2002-08-03 Thread Acer
okay you say zend gave me php and rasmus says 600 people gave me php. you guys need to get your story right. -Original Message- From: Justin French [mailto:[EMAIL PROTECTED]] Sent: August 3, 2002 9:44 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re: [PHP] Re: Protect PHP coding

RE: [PHP] Re: Protect PHP coding

2002-08-03 Thread Acer
obviously if it's in beta then it's not as mature as zend's encoder. but if you think over time, it will get better and match zend so where does that leave php? zend would have a competing product that costs less so who would pay the several thousands of dollars for zend? zend will fold up

RE: [PHP] Re: Protect PHP coding

2002-08-03 Thread Acer
you guys are the ones in denial and can't stand that someone is disagreeing with you. -Original Message- From: Justin French [mailto:[EMAIL PROTECTED]] Sent: August 3, 2002 10:03 PM To: Acer; Danny Shepherd Cc: [EMAIL PROTECTED] Subject: Re: [PHP] Re: Protect PHP coding on 04/08/02

RE: [PHP] Re: Protect PHP coding

2002-08-03 Thread Maxim Maletsky
Acer, Give it up. We are tired of you. Sincerely, Maxim Maletsky PHP Beginner www.phpbeginner.com -Original Message- From: Acer [mailto:[EMAIL PROTECTED]] Sent: Sunday, August 04, 2002 5:40 AM To: Justin French; [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: [PHP] Re:

RE: [PHP] Re: Protect PHP coding

2002-08-03 Thread Acer
i actually pointed this out awhile ago that there will be a competing product for the encoder and accelerator so i didn't see a point in zend continuing to destroy php's chances. i am trying to discuss this normally but i guess you forgot that someone told me to bug off or the other guy that

RE: [PHP] Re: Protect PHP coding

2002-08-03 Thread Acer
if you can't debate the issues then get out. -Original Message- From: Maxim Maletsky [mailto:[EMAIL PROTECTED]] Sent: August 4, 2002 12:00 AM To: 'Acer'; 'Justin French'; [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: [PHP] Re: Protect PHP coding Acer, Give it up. We are tired of

RE: [PHP] Re: Protect PHP coding

2002-08-03 Thread Maxim Maletsky
Acer, I can, we all can, but this is OFF-TOPIC. You are insisting on your ideas on this mailing list. We DO disagree with you, yet, we PREFER to drop this thread off THIS list. Please start looking for a right place and right people and tell them what you think about Zend, PHP, ASP and JSP.

RE: [PHP] Re: Protect PHP coding

2002-08-03 Thread Acer
i did drop it and then a whole bunch of you late comers piled in again so why don't you give it up. BTW did i mention the core php group are a click? i'm sure all of them are busily emailing each other saying oh what a jerk, we are doing a great job, don't listen to that guy, you guys are the

  1   2   >