[PHP] CMS advice needed

2004-03-19 Thread php4
Hi guys, I need to setup a "Content Management System" Which is the best from the many? Thanks Nico -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Safe Mode

2004-02-21 Thread php4
Hi, I'm running PHP4.3 with Apache 1.3.26 on Linux with a number of vittual domains. Safe_mode is set by default for obvious reasons. I wan't to install "gallery" http://gallery.menalto.com/modules.php?op=modload&name=News&file=index It requires to be run without safe_mode. Is it possible to s

RE: [PHP] eregi_replace help needed

2004-01-29 Thread php4
Hi, the "off the top of your head" was perfect. It is contrary to everything I've read on this, but it did the trick. >off the top of my head, I don't think '\s' is valid in a character >class, so just use ' ' instead >try eregi_replace("[0-9 ]{4,}" >-Craig Thanks Nico -- PHP General Mai

[PHP] eregi_replace help needed

2004-01-29 Thread php4
Hi, I want to locate patterns such as 12345678 1 23 45 67 89 1 2 34 567 890 and replace the pattern string with a new string. I tried $filter['message'] = eregi_replace("[0-9\s]{4,}",'', $filter['message']); but it does not work on all the above examples. Thanks for the assistance! Nico -

[PHP] Regular expression tutorial

2003-11-27 Thread php4
Hi, I see from the postings that I should learn Regular Expressions quite fast. Is there somewhere a decent online tutorial you could recommend? Thanks Nico -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Accounting package

2003-10-27 Thread php4
Hi, I have a need for a very simple financial accounting package which is webbased. Is there any such thing around? Thanks Nico -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Classes Tutorials

2003-09-21 Thread php4
Hi, I'm want to master the art of programming in Classes and worked through some elementary tutorials. Are there perhaps a bit more advanced tutorials than Devshed? Thanks Nico -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP and SAP

2003-09-18 Thread php4
Hi, I had a request if it is possible to access SAP data from PHP. If it is, where can I get more info? Thanks Nico -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] PHP forum

2003-07-08 Thread PHP4 Emailer
HOLY COW, I never laughed so hard in my life, This is DEAD ON, for what happens in this exact forum. Damn that [EMAIL PROTECTED] is funny!! And I've only been here for about 3 months now. I've see about every one of those in that short time. Boy that cracks me up. Good find Richard!! ha... :}

RE: [PHP] WEB HOST NEEDED!!!!!

2003-06-24 Thread PHP4 Emailer
SO let me get this straight, IF I pay 1000.00 a month, you'll "throw the pony in?" Sweet, where do I sign up!! PS, if for some unknown reason the credit card I enter doesn't work it's because I got it for free. :) -Original Message- From: erythros [mailto:[EMAIL PROTECTED] Sent: Tuesday,

RE: [PHP] a question, need an answer

2003-06-22 Thread PHP4 Emailer
PS, from the http://www.php.net/manual/en/function.session-register.php page, you might want to read that because your second session call won't work with register globals is disabled but $_SESSION array will. :) -Original Message- From: PHP4 Emailer [mailto:[EMAIL PROTECTED]

RE: [PHP] a question, need an answer

2003-06-22 Thread PHP4 Emailer
I could be wrong here, but from my experiences with sessions is that your first session_start() is assigning the value of 'arma2' to the $_SESSION['eventid'] variable, whereas the second one you are making the 'arama2' variable a global session variable, so as to whatever it's value is on the page

RE: [PHP] Will this work right?

2003-06-13 Thread PHP4 Emailer
an brain can't be beat, Life is great. Sorry that was the smart ass in me comin out. :) ENJOY the apples! -Original Message- From: Leif K-Brooks [mailto:[EMAIL PROTECTED] Sent: Saturday, June 14, 2003 12:40 AM To: PHP4 Emailer Cc: [EMAIL PROTECTED] Subject: Re: [PHP] Will this work r

RE: [PHP] Will this work right?

2003-06-13 Thread PHP4 Emailer
I'm gonna go out on a limb here, but isn't that why the "human brain" made calculators? ;) Good luck with the buttons, if you need help let me know. :} -Original Message- From: Leif K-Brooks [mailto:[EMAIL PROTECTED] Sent: Friday, June 13, 2003 3:40 PM To: [EMAIL PROTECTED] Cc: [EMAIL PR

RE: [PHP] regarding tags

2003-06-13 Thread PHP4 Emailer
My understanding of this (am still a newbie though) is that the is a short tag that assignes the $variable directly to a "print/echo" command. You can use the other way by just adding Hope this helps. -Original Message- From: Ulrik NIelsen [mailto:[EMAIL PROTECTED] Sent: Friday, June 13

[PHP] mail() problem affecting output to browser on completion

2003-06-07 Thread PHP4 Emailer
Alright with the following code I am using is printing/echoing to the browser a "1" before the html output. It's like it's adding 2 variables together. Here is what I am trying to do. I have a form that enters information to a text file, and at the same time sends the information to a predetermine

RE: [PHP] How to optimize this MySQL command?

2003-06-04 Thread PHP4 Emailer
YEAH, disregard my message, I was doing what James was doing but didn't see that you where using ""2"" seperate tables already, sigh been a great morning already. but there's my idea anyhow!! hehe David :) -Original Message- From: James Lobley [mailto:[EMAIL PROTECTED] Sent: Wednesday, Ju

RE: [PHP] How to optimize this MySQL command?

2003-06-04 Thread PHP4 Emailer
Wouldn't it be easier to "SELECT * from bt_member WHERE ch='$ch' && id='$result[mid]',$db); //I'm not sure of the exact syntax there since I'm a newbie, but wouldn't it be easier to do that and then do a pulling of the fields that you want? //ie... while ($result = mysql_fetch_object($resul

RE: [PHP] trikky authentication question

2003-06-02 Thread PHP4 Emailer
Daniel, What about using IP Logging? If the user is already logged in with the same IP you can let them on, if its a new IP you could ask them if they are a returning user? If so, make them log in a second time for verification, and close the other logged in user/account. Make some fancy "It appea

[PHP] array_walk() and class methods

2001-12-19 Thread php4
i have class instance snagfu, of class snafu, with a method, fubar() i have an array, $tarfu, and want to run it through array_walk(), array_walk($tarfu, $snagfu->fubar) seems to be logical, if it's possible. this obviously doesn't work. How do i use a class method with array walk? or is it e

[PHP] Echo and Print

2001-01-26 Thread php4
I know it is a kind of stupid question but I was trying to figure out the difference between "Echo" and "Print" and I didn't find it...Could anybody explain that to me?? Thank you Felipe Lopes MailBR - O e-mail do Brasil -- http://www.mailbr.com.br Faça já o seu. É gratuito!!! -- PHP

[PHP] Search Engine...

2001-01-25 Thread php4
Hello... I would like to code a search engine to use just inside my home page...Anyone has an idea where can I find informations about how is the process to code a search engine with PHP?? Thank you Felipe Lopes MailBR - O e-mail do Brasil -- http://www.mailbr.com.br Faça já o seu. É gra