Re: [PHP] php package

2004-02-28 Thread Burhan Khalid
[EMAIL PROTECTED] wrote: > Dear All, > > Is there ( www.php.net ) RPM / SRPMS packages can be downloaded ? www.rpmfind.net Next time, google for it. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] What's your favorite PHP weather code?

2004-02-28 Thread Burhan Khalid
Karl Timmermann wrote: I'm looking for some code to get the latest weather and put it on my webpage, and have it very customizable. What are your favorites? http://weatherpixie.com/ Can't get any more customized than that ;) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visi

[PHP] Weird Problem with INPUT tag

2004-02-28 Thread Ahbaid Gaffoor
I'm building a site using PHP for the navigation section of each page and to to do the general page layout. To this effect I have created php functions to structure the pages and I fill in the static text specific to each page. This all works. I have now got to the point where I am doing a pag

Re: [PHP] Allow service to interact with desktop and have network access

2004-02-28 Thread Burhan Khalid
Vincent Bouret wrote: Hi, I was trying to figure out if there was any way I could run Apache in Windows 2000 as a service which is allowed to interact with desktop and which has network priviledges? I try to exec a an .exe from PHP which needs network priviledges and which needs to interact with

Re: [PHP] $sring = ARRAY?

2004-02-28 Thread Burhan Khalid
Axiom wrote: Why is it that in the following code that $value comes back with just the word ‘ARRAY’ instead of the actual result? if (($value = mysql_fetch_row($result)) AND ($value == $username)) { echo "You are authenticated"; } else { echo "Your username or password is in

Re: [PHP] Trying to get PHP to run on Windows

2004-02-28 Thread Susan Donnelly
Nevermind. I found an excellent resource on the internet that should take care of this. Thanks again. - Original Message - From: "Susan Donnelly" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, February 28, 2004 11:28 PM Subject: [PHP] Trying to get PHP to run on Windows I'

Re: [PHP] Re: PHP application design with WAE UML.

2004-02-28 Thread daniel
just found these links http://uml.sourceforge.net/index.php http://www.phppatterns.com/index.php/link/category/39/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Trying to get PHP to run on Windows

2004-02-28 Thread Susan Donnelly
I'm very new to PHP and trying to get it to run on Windows ME. I have both Apache and Personal Web Server installed and can't get it to run on either. I keep getting a message that my page cannot be displayed. I'm typing http://oemcomputer/hello.php in the subject line of my browser, with oem

Re: [PHP] Re: PHP application design with WAE UML.

2004-02-28 Thread Manuel Lemos
Hello, On 02/29/2004 12:42 AM, [EMAIL PROTECTED] wrote: This is not exactly about going from UML to PHP but going from model design to PHP with optional UML class diagram generation: http://www.meta-language.net/metastorage.html Hi manuel, this is excellent, i too have been looking into UML. I may

[PHP] PHPdoc web interface

2004-02-28 Thread daniel
Has anyone tried out the new version ? I've never managed to make it work without having to make ini files for each directory i want to document. I tried just making my options in the form, but it doesnt work here is the output Parsing Files ... PHP Version 4.3.1 phpDocumentor version 1.3.0RC2 Pa

[PHP] $sring = ARRAY?

2004-02-28 Thread Axiom
Why is it that in the following code that $value comes back with just the word ‘ARRAY’ instead of the actual result? if (($value = mysql_fetch_row($result)) AND ($value == $username)) { echo "You are authenticated"; } else { echo "Your username or password is incorrect"; }

Re: [PHP] mkdir and rmdir possible but not readdir and opendir???

2004-02-28 Thread Rasmus Lerdorf
On Sat, 28 Feb 2004, raisinlove wrote: > > Surely if there is a work-around then safe mode would not be doing its job > > properly? > > Well this was part of the purpose of my post, before Rasmus explained > it, I didn't understand why I couldnt access a directory I had created. > I was hoping for

Re: [PHP] Re: PHP application design with WAE UML.

2004-02-28 Thread daniel
> This is not exactly about going from UML to PHP but going from model > design to PHP with optional UML class diagram generation: > > http://www.meta-language.net/metastorage.html > Hi manuel, this is excellent, i too have been looking into UML. I may investigate in this, there is a tool called

Re: [PHP] - Receive mail with PHP.

2004-02-28 Thread Manuel Lemos
Hello, On 02/28/2004 10:01 AM, [EMAIL PROTECTED] wrote: 1- it's possible to receive mail with PHP? There's in PHP a function (like mail()) for receive mail? If you get the messages in a mailbox accessible with POP3 protocol, you may want to try using this PHP POP3 client class: http://www.ph

[PHP] Re: PHP application design with WAE UML.

2004-02-28 Thread Manuel Lemos
Hello, On 02/27/2004 05:58 PM, Lukasz Karapuda wrote: I have recently started to put more emphasis on PHP web application design and the documenting techniques that are associated with that (UML, flowcharting). I fairly well acquainted with UML diagraming techniques in general. I was not success

Re: [PHP] 2 questions - PHP site Automatic search and slow display

2004-02-28 Thread Rasmus Lerdorf
Keep in mind that we have a "show source" button on every php.net page so you can see how everything is done. Here is the source for the code that handles the error redirection: http://www.php.net/source.php?url=/error.php -Rasmus On Sun, 29 Feb 2004, Ryan A wrote: > Hi, > I have to questio

[PHP] Re: 2 questions - PHP site Automatic search and slow display

2004-02-28 Thread Andre Cerqueira
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 (1) dont know if u understood, but have you tryed flush()? (http://www.php.net/flush) (2) i think you could make a script for 404 error, and that script could take that path in the url and use it for searching... Ryan A wrote: Hi, I have to question

[PHP] 2 questions - PHP site Automatic search and slow display

2004-02-28 Thread Ryan A
Hi, I have to questions which are pretty unrelated except that both of them are in PHP. (1) I am using a class to send email, 3 different kinds (text, html, text+html attachement) no problem there, but I am giving the client the option to mail all his members/clients at the same time...I have set

Re: [PHP] Array Question

2004-02-28 Thread Michal Migurski
>I would like to search an array to see if the value of the variable $url >exists in this array. The array would look like: in_array() - michal migurski- contact info and pgp key: sf/cahttp://mike.teczno.com/contact.

Re: [PHP] Possible Leap Year bug with strtotime (4.3.4)?

2004-02-28 Thread hitek
I don't think it's so much a bug as it is just some odd behavior. If you use 'this monday' the results are correct. $start = strtotime('this monday'); Keith At 02:44 PM 2/28/2004, Rob Petty wrote: I am getting incorrect results from strtotime: [dali]$ uname -a Linux dali 2.4.24-grsec+w+fhs5+gr1

[PHP] Array Question

2004-02-28 Thread Jason Williard
I would like to be able to search an array for a match the a specific variable. So far, I have been trying to use preg_grep but am not getting the results that I want. Basically, I would have a variable: $url = "domain.com" I would like to search an array to see if the value of the variable $url

Re: [PHP] How to recognize .mov .mp3 file types

2004-02-28 Thread Radek Zajkowski
This is extremly swell: http://getid3.sourceforge.net/ Radek Zajkowski wrote: getimagesize() takes care of determining whether an image is GIF, JPEG SWF etc. but how do I determine if a file is a .mov or .mp3? R> -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http:/

[PHP] Re: Possible Leap Year bug with strtotime (4.3.4)?

2004-02-28 Thread Rob Petty
"Rob Petty" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] | I am getting incorrect results from strtotime: | | [dali]$ uname -a | Linux dali 2.4.24-grsec+w+fhs5+gr1913+nfs+++p3+c3+bu+gr0b-v6.182 #1 SMP Mon Jan 5 12:43:44 PST 2004 i686 unknown | [dali]$ date | Sat Feb 28 14:33:39 PST

[PHP] Possible Leap Year bug with strtotime (4.3.4)?

2004-02-28 Thread Rob Petty
I am getting incorrect results from strtotime: [dali]$ uname -a Linux dali 2.4.24-grsec+w+fhs5+gr1913+nfs+++p3+c3+bu+gr0b-v6.182 #1 SMP Mon Jan 5 12:43:44 PST 2004 i686 unknown [dali]$ date Sat Feb 28 14:33:39 PST 2004 [dali]$ cat t1.php '."\n"); echo ('"Next" Monday: '.date('l, M d Y',$start).''

[PHP] Stumped on a totally wierd problem

2004-02-28 Thread Brian V Bonini
nevermind I got it. << snip >> I have something really wierd going on with a form that let's a user add/edit/delete data from a mysql database. It's like I can not edit any data that was not recently added or if it was added by another user. If I log into mysql directly under the same user I'm

[PHP] Stumped on a totally wierd problem

2004-02-28 Thread Brian V Bonini
I have something really wierd going on with a form that let's a user add/edit/delete data from a mysql database. It's like I can not edit any data that was not recently added or if it was added by another user. If I log into mysql directly under the same user I'm using form the php script and run

[PHP] How to recognize .mov .mp3 file types

2004-02-28 Thread Radek Zajkowski
getimagesize() takes care of determining whether an image is GIF, JPEG SWF etc. but how do I determine if a file is a .mov or .mp3? R> -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] mkdir and rmdir possible but not readdir and opendir???

2004-02-28 Thread raisinlove
Surely if there is a work-around then safe mode would not be doing its job properly? Well this was part of the purpose of my post, before Rasmus explained it, I didn't understand why I couldnt access a directory I had created. I was hoping for a function which would achieve the same purpose but

Re: [PHP] 2 OOP or Not 2 OOP

2004-02-28 Thread Gareth Williams
I had programmed for years in OO, and when I learned PHP, it only seemed natural to stay with it. I personally find the OO functionality in PHP to be not quite complete, but good enough for daily use. In fact, I don't write any sites in a non-oo manner. I love it. On 28 Feb 2004, at 22:58,

Re: [PHP] mkdir and rmdir possible but not readdir and opendir???

2004-02-28 Thread raisinlove
Rasmus Lerdorf wrote: This is normal. You are allowed to create the directory because the directory you are creating it in is owned by the same user id that owns the script calling mkdir(). However, since your web server runs as some other user the owner of the newly created dir will be that use

RE: [PHP] creating file links on linux (ln) with php

2004-02-28 Thread Jeremy
RTFM. http://us2.php.net/manual/en/function.symlink.php -Original Message- From: Merlin [mailto:[EMAIL PROTECTED] Sent: Saturday, February 28, 2004 3:24 PM To: [EMAIL PROTECTED] Subject: [PHP] creating file links on linux (ln) with php Hi there, I do have a couple of hundred file links

php-general Digest 28 Feb 2004 21:58:44 -0000 Issue 2617

2004-02-28 Thread php-general-digest-help
php-general Digest 28 Feb 2004 21:58:44 - Issue 2617 Topics (messages 179059 through 179093): Re: Text cleaning? 179059 by: Karl Timmermann 179063 by: Brian V Bonini 179066 by: Jason Wong PHP to UML ? 179060 by: Rick \[Kitty5\] - Receive mail with PHP.

[PHP] 2 OOP or Not 2 OOP

2004-02-28 Thread Monty
I've decided it's time to learn how to program using PHP's OOP. But, I just found this article which is giving me second thoughts... http://www.zend.com/zend/art/mistake1.php#Heading13 The article was written in 2000, so, it may not apply now. Is OOP in PHP 4.3 slow and incomplete as the arti

[PHP] Re: [PHP-DEV] PHP5: Class behavior: method overloading

2004-02-28 Thread Cristiano Duarte
Hi Walter, On Thu, 26 Feb 2004 11:44:47 -0800, Walter A. Boring IV wrote: > well, if you are implementing something completely new in php5, > there there are no compatibility issues. I have many classes in my > projects in php4. I'm not sure of how many child constructors have > different pa

[PHP] creating file links on linux (ln) with php

2004-02-28 Thread Merlin
Hi there, I do have a couple of hundred file links to create. I am wondering if this could be automated with php. On a linux shell it would look like this: ln united-states-map.jpg vereinigte-staaten-karte.jpg Are there php commands to execute this ln command? Thanx for any help on that, Merli

Re: [PHP] between timestamps

2004-02-28 Thread Robert Cummings
On Sat, 2004-02-28 at 14:59, Ryan A wrote: > Hey everyone... > In the last 24 hours there have been questions on how to get the all the > records of a day > based on the timestamp and to check whether the current date/time is later > than a timestamp, > I have a new one... how do you fetch all rec

Re: [PHP] php crash and memory_limit

2004-02-28 Thread kringla
Rasmus Lerdorf wrote: Which web server and version? php: 4.3.4 apache 1.3.27 Linux x 2.4.20aa1 #2 SMP Fri Mar 7 15:07:36 CET 2003 i686 Server API CGI/FastCGI max_execution_time 120 max_input_time -1 './configure' '--enable-force-cgi-redirect' '--enable-inline-optimization' '--with-bz2' '--wit

[PHP] Set Library Path

2004-02-28 Thread Mike Mapsnac
How to set up the path for PHP Library? I want to create a directory that will contain all libraries files. And than I want to include the directory in each file. How to specify the path in php setting? Thanks _ Take off on a roman

[PHP] between timestamps

2004-02-28 Thread Ryan A
Hey everyone... In the last 24 hours there have been questions on how to get the all the records of a day based on the timestamp and to check whether the current date/time is later than a timestamp, I have a new one... how do you fetch all records between date1 and date2? eg: you have some entrie

Re: [PHP] Problem With Session Handling

2004-02-28 Thread Rasmus Lerdorf
This stuff hasn't changed in about 5 years though. ignore_user_abort was introduced in 3.0.7 released March 1, 1999 and I remember writing that connection handling chapter in the manual sometime before that. -Rasmus On Sat, 28 Feb 2004, Kyndig wrote: > > > Rasmus Lerdorf wrote: > > Uh, sorry, I

Re: [PHP] Problem With Session Handling

2004-02-28 Thread Kyndig
Rasmus Lerdorf wrote: Uh, sorry, I meant "ignore_user_abort = On" These negated ini options suck. -Rasmus That fixed it! =) I'll make sure to read the Connection Handling chapter. I havn't looked into the php.ini docs, in quite a few php versions. I'm sure my knowledge about them is now outdat

Re: [PHP] php crash and memory_limit

2004-02-28 Thread Rasmus Lerdorf
Which web server and version? On Sat, 28 Feb 2004, kringla wrote: > Hi > I'm having a problem with file uploads and freezings of the php-module > in apache. Yes I have googled and RTFM:ed but I don't get any good > results out from what I have tested so far. > > I have set MAX_FILE_SIZE as a hidd

Re: [PHP] Compare timestamps?

2004-02-28 Thread Rasmus Lerdorf
if($stamp1 > $stamp2) ... On Sat, 28 Feb 2004, Brian Dunning wrote: > How would I make an if() comparison to check whether the current > date/time is later than a timestamp for the database formatted as > 20040226085607? > > Thanks, > > - Brian > > -- > PHP General Mailing List (http://www.php.ne

Re: [PHP] Problem With Session Handling

2004-02-28 Thread Rasmus Lerdorf
Uh, sorry, I meant "ignore_user_abort = On" These negated ini options suck. -Rasmus On Sat, 28 Feb 2004, Rasmus Lerdorf wrote: > ignore_user_abort = Off > > in your php.ini file > > And read the Connection Handling chapter in the manual. > > -Rasmus > > On Sat, 28 Feb 2004, Kyndig wrote: > > > H

Re: [PHP] Problem With Session Handling

2004-02-28 Thread Rasmus Lerdorf
Uh, sorry, I meant "ignore_user_abort = On" These negated ini options suck. -Rasmus On Sat, 28 Feb 2004, Rasmus Lerdorf wrote: > ignore_user_abort = Off > > in your php.ini file > > And read the Connection Handling chapter in the manual. > > -Rasmus > > On Sat, 28 Feb 2004, Kyndig wrote: > > > H

Re: [PHP] Problem With Session Handling

2004-02-28 Thread Rasmus Lerdorf
ignore_user_abort = Off in your php.ini file And read the Connection Handling chapter in the manual. -Rasmus On Sat, 28 Feb 2004, Kyndig wrote: > Hi folks, > >I've been working on my website for a few years now. It uses SESSION > management. I am using: php4.3 version. A problem I have had

Re: [PHP] flock problem

2004-02-28 Thread Armand Turpel
The problem was that the file was opened for reading and it was locked exclusiv. $_fp = @fopen($file, "r"); flock($_fp, LOCK_EX); After change to LOCK_SH it works. What is strange is that not all systems have this behavior. On linux with php 4.3.4 as module this was not a problem. !?! Why??

Re: [PHP] flock problem

2004-02-28 Thread Rasmus Lerdorf
Is the file on an NFS-mounted filesystem? flock() in 4.3.3 works fine. -Rasmus On Sat, 28 Feb 2004, Armand Turpel wrote: > Hi, > > flock($_fp, LOCK_EX ); > > return always false. I'm relativily shure that the file to flock is not flocked > elsewhere. php 4.3.3 is running as cgi on linux. > Wha

Re: [PHP] mkdir and rmdir possible but not readdir and opendir???

2004-02-28 Thread Rasmus Lerdorf
This is normal. You are allowed to create the directory because the directory you are creating it in is owned by the same user id that owns the script calling mkdir(). However, since your web server runs as some other user the owner of the newly created dir will be that user and not your own so y

[PHP] flock problem

2004-02-28 Thread Armand Turpel
Hi, flock($_fp, LOCK_EX ); return always false. I'm relativily shure that the file to flock is not flocked elsewhere. php 4.3.3 is running as cgi on linux. What is going wrong? thanks for an answer.

Re: [PHP] mkdir and rmdir possible but not readdir and opendir???

2004-02-28 Thread Jason Wong
On Saturday 28 February 2004 22:47, raisinlove wrote: > Hi, I'm having trouble understanding why I can create and delete > directories with my script via mkdir and rmdir, but not simply being > able to read them with opendir or readdir? Are you saying that you can create a directory using mkdir()

[PHP] mkdir and rmdir possible but not readdir and opendir???

2004-02-28 Thread raisinlove
Hi, I'm having trouble understanding why I can create and delete directories with my script via mkdir and rmdir, but not simply being able to read them with opendir or readdir? For example, when I attempt to access these directories with opendir, I get this error message: Warning: opendir(): S

[PHP] mkdir and rmdir possible but not readdir and opendir???

2004-02-28 Thread raisinlove
Hi, I'm having trouble understanding why I can create and delete directories with my script via mkdir and rmdir, but not simply being able to read them with opendir or readdir? For example, when I attempt to access these directories with opendir, I get this error message: Warning: opendir(): S

RE: [PHP] PHP5 only configures mysql 4.1 source with mysqli

2004-02-28 Thread electroteque
Heh i just read the bit about having to change the functions from mysql to mysqli, now what is someone doesnt use a db wrapper, they'd have a field day, lucky i use a wrapper heh. -Original Message- From: Raditha Dissanayake [mailto:[EMAIL PROTECTED] Sent: Sunday, February 29, 2004 1:21 A

[PHP] Allow service to interact with desktop and have network access

2004-02-28 Thread Vincent Bouret
Hi, I was trying to figure out if there was any way I could run Apache in Windows 2000 as a service which is allowed to interact with desktop and which has network priviledges? I try to exec a an .exe from PHP which needs network priviledges and which needs to interact with desktop. Thanks Vince

[PHP] Problem With Session Handling

2004-02-28 Thread Kyndig
Hi folks, I've been working on my website for a few years now. It uses SESSION management. I am using: php4.3 version. A problem I have had for awhile now is that all session information is lost if a page does not fully load. This wouldn't be an issue, except on every page load I create a My

[PHP] Compare timestamps?

2004-02-28 Thread Brian Dunning
How would I make an if() comparison to check whether the current date/time is later than a timestamp for the database formatted as 20040226085607? Thanks, - Brian -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] php crash and memory_limit

2004-02-28 Thread kringla
Hi I'm having a problem with file uploads and freezings of the php-module in apache. Yes I have googled and RTFM:ed but I don't get any good results out from what I have tested so far. I have set MAX_FILE_SIZE as a hidden value in the form, the value is set to "40" I increased 'memory_limit

Re: [PHP] PHP5 only configures mysql 4.1 source with mysqli

2004-02-28 Thread Raditha Dissanayake
Hi, Mysqli installation certainly isn't improved :-) i had a lot of trouble too, and shared my experience online at http://www.raditha.com/mysql/mysqli.php hope someone finds it usefull. electroteque wrote: Hi i dont know who to tell, please forward it on, I'm running Solaris 9, PHP5 only seems

Re: [PHP] Re: Text cleaning?

2004-02-28 Thread Jason Wong
On Saturday 28 February 2004 18:49, Karl Timmermann wrote: Please do not top post. > Like if the sentence is split. 1) define your idea of a sentence 2) construct a suitable regex for use with preg_replace() If you don't know how to do (2) then at least do (1) and then someone might be able to

Re: [PHP] - Receive mail with PHP.

2004-02-28 Thread Raditha Dissanayake
1) you need a mail server to recieve mail. 2) asp2php [EMAIL PROTECTED] wrote: Hi all, i've two questions today: 1- it's possible to receive mail with PHP? There's in PHP a function (like mail()) for receive mail? 2- These's a tool for convet code in ASP in code in PHP? Thanks in advance for

Re: [PHP] What's your favorite PHP weather code?

2004-02-28 Thread Lowell Allen
> I'm looking for some code to get the latest weather and put it on my > webpage, and have it very customizable. What are your favorites? > I've only tried this one -- found it easy to work with: -- Lowell Allen -- PHP General Mailing List (http://www.p

Re: [PHP] Text cleaning?

2004-02-28 Thread Brian V Bonini
On Sat, 2004-02-28 at 00:09, Karl Timmermann wrote: > Does anyone have some PHP code to remove incorrect carriage returns? > Depends on your definition of "incorrect". -- BrianGnuPG -> KeyID: 0x04A4F0DC | URL: www.gfx-design.com/keys Key Server:

[PHP] UML from PHP?

2004-02-28 Thread Rick \[Kitty5\]
Is there a utility I can point at a PHP project and have it draw lots of nice UML doodles for me? -- Rick Kitty5 NewMedia http://Kitty5.com POV-Ray News & Resources http://Povray.co.uk TEL : (+44) 0845 1083740 - ICQ : 15776037 PGP Public Key : http://pgp.kitty5.com -- PHP General Mailing List

[PHP] - Receive mail with PHP.

2004-02-28 Thread francesco
Hi all, i've two questions today: 1- it's possible to receive mail with PHP? There's in PHP a function (like mail()) for receive mail? 2- These's a tool for convet code in ASP in code in PHP? Thanks in advance for help. Frank [EMAIL PROTECTED] A&S Automation & Software - only solution

[PHP] PHP to UML ?

2004-02-28 Thread Rick \[Kitty5\]
Is there a linux utility to parse a PHP project and spit out some UML diagrams? -- Rick Kitty5 NewMedia http://Kitty5.com POV-Ray News & Resources http://Povray.co.uk TEL : (+44) 0845 1083740 - ICQ : 15776037 PGP Public Key : http://pgp.kitty5.com -- PHP General Mailing List (http://www.php.ne

Re: [PHP] Re: Text cleaning?

2004-02-28 Thread Karl Timmermann
Like if the sentence is split. Thanks On Feb 28, 2004, at 1:34 AM, Jason Wong wrote: On Saturday 28 February 2004 16:15, Karl Timmermann wrote: Opps, I failed to mention there can be more paragraphs with legit new lines, like: Hello, my name is Karl. Hello, my name is Dave. This is some more exa

php-general Digest 28 Feb 2004 09:47:38 -0000 Issue 2616

2004-02-28 Thread php-general-digest-help
php-general Digest 28 Feb 2004 09:47:38 - Issue 2616 Topics (messages 179027 through 179058): arrays and sessions 179027 by: Kermit Short 179030 by: Chris W. Parker 179032 by: Kermit Short 179037 by: Chris W. Parker 179040 by: Justin Patrin Re: List f

[PHP] PHP5 only configures mysql 4.1 source with mysqli

2004-02-28 Thread electroteque
Hi i dont know who to tell, please forward it on, I'm running Solaris 9, PHP5 only seems to configure mysql 4.1 using the mysqli, i tried the binary distribution and it complained about the wrong library version so i compiled the source and it was fine. Just letting people know, i also had to do a

Re: [PHP] Re: Text cleaning?

2004-02-28 Thread Jason Wong
On Saturday 28 February 2004 16:15, Karl Timmermann wrote: > Opps, I failed to mention there can be more paragraphs with legit new > lines, like: > > Hello, my name is Karl. > Hello, my name > is Dave. > This is some more example text. > > Yes, this is yet some more. So what is your criteria for "

Re: [PHP] Re: Text cleaning?

2004-02-28 Thread Karl Timmermann
Opps, I failed to mention there can be more paragraphs with legit new lines, like: Hello, my name is Karl. Hello, my name is Dave. This is some more example text. Yes, this is yet some more. On Feb 27, 2004, at 11:56 PM, Five wrote: You mean something like this? $message = ereg_replace( "\n"