[PHP] PHP5 Soap extension and generate wsdl

2005-12-06 Thread Dan Rossi
Hi there, im just wondering if its possible to setup your web service and let it generate a wsdl file for clients when u request the script with a wsdl flag like with nusoap ? Im rather not having to code an entire wsdl document for the web service if possible :\ -- PHP General Mailing List (

[PHP] Re: Migration to PHP5

2005-12-06 Thread Amir Mohammad Saied
Hi, I think for someone like you that's a Java developer, php4 seems crap when OO programming comes to mind. If you are going to write products that should be hosted on vary features (e.g one with php5, the other 4.4 and someother 4.3) I suggest you to use 4.3 and take care about some notes, bu

[PHP] Re: Debuggers on Windows Servers

2005-12-06 Thread Amir Mohammad Saied
Mark Steudel wrote: Anyone out there running debuggers and profilers on your windows boxes? I'd like to start profiling some of my code and use some debuggers. Since we have dev sites on the same box with product sites, I wanted to make sure that before I ask our Sysadmin to install anything that

Re: [PHP] What software do you use for writing PHP?

2005-12-06 Thread Michael Hulse
On Dec 6, 2005, at 9:25 AM, Mark Steudel wrote: I primarily code in Dreamweaver 8. Two of my favorite features that were added from MX are as follows: 1. Code folding, basically you can collapse blocks of code. If you have to work with other peoples code, matching braces and code folding is an

Re: [PHP] references, circular references, oop, and garbage collection in PHP5

2005-12-06 Thread Anas Mughal
One example he presented is suited to pre-PHP5. With PHP5, a reference to self could be kept inside the class as a static member. No need to use a global variable. Just wanted to bring this up for new comers to PHP references and global variables. Cheers. On 12/6/05, Ray Hauge <[EMAIL PROTECT

Re: [PHP] references, circular references, oop, and garbage collection in PHP5

2005-12-06 Thread Curt Zirzow
On Tue, Dec 06, 2005 at 10:46:36PM -0500, Alan Pinstein wrote: > >the key thing to remember in php5 is that the old &$var > >declaration has no real meaning in objects. php5's objects exist > >outside of the old oop reference. Consider: > > Hmmm... I am not sure I believe this. > > I understand

[PHP] Re: XmlWriter::writeDTD bug...

2005-12-06 Thread Rob Richards
Jared Williams wrote: Hi, $writer = new XmlWriter(); ... $writer->writeDtd('html', '-//W3C//DTD XHTML 1.0 Strict//EN', 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'); produces no whitespace between the public & system ids like... http://w

[PHP] Re: what is better for performance?

2005-12-06 Thread Oliver Grätz
Karel Kozlik schrieb: > Hi, > I am just thinking about that what is better for storeing structured > variables in point of view of performance. > > Is better store structured variables in associative array, for example: > > $person['first_name'] = 'Karel'; > $person['last_name'] = 'Kozlik'; >

Re: [PHP] What software do you use for writing PHP?

2005-12-06 Thread Curt Zirzow
On Tue, Dec 06, 2005 at 06:43:49PM -0800, Michael Hulse wrote: > On Dec 6, 2005, at 6:38 PM, Curt Zirzow wrote: > >On Tue, Dec 06, 2005 at 06:36:33PM +0100, M. Sokolewicz wrote: > >>Jason Petersen wrote: > >>>On 12/6/05, Jeff McKeon <[EMAIL PROTECTED]> wrote: > > Shot... BBEdit[1] & Dreamweave

Re: [PHP] references, circular references, oop, and garbage collection in PHP5

2005-12-06 Thread Curt Zirzow
I'm going to jump to the code as fast as possible to explain what I can, the key thing to remember in php5 is that the old &$var declaration has no real meaning in objects. php5's objects exist outside of the old oop reference. Consider: class Object { public $val; function __construct($v) {

Re: [PHP] Urlencode vs htmlentities

2005-12-06 Thread Curt Zirzow
On Tue, Dec 06, 2005 at 12:05:10PM -0800, Mark Steudel wrote: > Lets say I have the following: Before I go further: htmlentities - escapes the output for html urlencode- escapes the output for a url > > Current URL: http://www.domain.com/page.php?action=list >

RE: [PHP] Classes/Objects - Books/Links?

2005-12-06 Thread Mark Steudel
I took a look at a lot of books at Barnes and Noble and this I thought was the best intro to classes. I think it does a good job of letting you know both how to do things in HP4 and 5. Professional PHP 5 Publisher: Wrox -Original Message- From: Michael Hulse [mailto:[EMAIL PROTECTED] Se

[PHP] XmlWriter::writeDTD bug...

2005-12-06 Thread Jared Williams
Hi, $writer = new XmlWriter(); ... $writer->writeDtd('html', '-//W3C//DTD XHTML 1.0 Strict//EN', 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'); produces no whitespace between the public & system ids like... http://www.w3.org/TR/xhtml1/DTD/

Re: [PHP] Classes/Objects - Books/Links?

2005-12-06 Thread Michael Hulse
On Dec 6, 2005, at 6:39 PM, Chris Shiflett wrote: Adam Trachtenberg's Upgrading to PHP 5 (O'Reilly) is a good book. It covers all of the new features in PHP 5 (so it's not just OOP, sorry), but the chapter on objects is excellent. Hi Chris, thanks for the quick response. :) That book sounds g

Re: [PHP] Urlencode vs htmlentities

2005-12-06 Thread comex
> Should I use htmlentites on $top first? AFAIK, all of what you said is correct except for that, where you should use htmlentities(urlencode($top)). -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] What software do you use for writing PHP?

2005-12-06 Thread Michael Hulse
On Dec 6, 2005, at 6:38 PM, Curt Zirzow wrote: On Tue, Dec 06, 2005 at 06:36:33PM +0100, M. Sokolewicz wrote: Jason Petersen wrote: On 12/6/05, Jeff McKeon <[EMAIL PROTECTED]> wrote: Hey all, Forever now I've been using Frontpage for all my web work including php. I'm sure there's better s

Re: [PHP] Classes/Objects - Books/Links?

2005-12-06 Thread Chris Shiflett
Michael Hulse wrote: Any books that you could suggest that specifically address just classes/objects? Adam Trachtenberg's Upgrading to PHP 5 (O'Reilly) is a good book. It covers all of the new features in PHP 5 (so it's not just OOP, sorry), but the chapter on objects is excellent. Chris -

[PHP] Classes/Objects - Books/Links?

2005-12-06 Thread Michael Hulse
Hello, I want to learn about classes and objects in PHP. (IMHO) I would say that my understanding of functions is very good. Any books that you could suggest that specifically address just classes/objects? How-a-bout sites/links/tutorials on the web? I am hoping that by learning how to use

Re: [PHP] What software do you use for writing PHP?

2005-12-06 Thread Curt Zirzow
On Tue, Dec 06, 2005 at 06:36:33PM +0100, M. Sokolewicz wrote: > Jason Petersen wrote: > >On 12/6/05, Jeff McKeon <[EMAIL PROTECTED]> wrote: > > > >>Hey all, > >> > >>Forever now I've been using Frontpage for all my web work including php. > >>I'm sure there's better software out there that is more

Re: [PHP] Assigns True but not false?

2005-12-06 Thread Curt Zirzow
On Tue, Dec 06, 2005 at 12:38:28PM -0500, Gabe wrote: > In this if statement, if the condition is true, then it will assign true > to the array (as I want it to). If the condition evaluates to false, it > assigns nothing. Any idea why it won't assign false? If I switch the > FALSE boolean val

Re: [PHP] Web calendar and online Dairy

2005-12-06 Thread Terence
Vikram Kumar wrote: Hi! I need a web calendar and online diary application. Try this, it might fit your needs. http://www.k5n.us/webcalendar.php -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Debuggers on Windows Servers

2005-12-06 Thread Mark Steudel
Anyone out there running debuggers and profilers on your windows boxes? I'd like to start profiling some of my code and use some debuggers. Since we have dev sites on the same box with product sites, I wanted to make sure that before I ask our Sysadmin to install anything that they are stable and e

[PHP] Web calendar and online Dairy

2005-12-06 Thread Vikram Kumar
Hi! I need a web calendar and online diary application. Can some one develop those applications for me. You may use open source applications, or already developed applications in your previous projects, I need simplest calendar and online diary applications. And ofcourse, I will pay you. thank

Re: [PHP] Optimizing Images

2005-12-06 Thread John Hinton
Tim Traver wrote: Hi all, ok, I'm trying to write a script to optimize images for the web, but I can't seem to figure out how to go about reducing the color pallete, and therefor reducing the size of the images. I'm trying to be generic about it so that users can optimize GIF's and JPG's o

[PHP] Optimizing Images

2005-12-06 Thread Tim Traver
Hi all, ok, I'm trying to write a script to optimize images for the web, but I can't seem to figure out how to go about reducing the color pallete, and therefor reducing the size of the images. I'm trying to be generic about it so that users can optimize GIF's and JPG's or even PNG's. I can'

Re: [PHP] references, circular references, oop, and garbage collection in PHP5

2005-12-06 Thread Ray Hauge
I am uncertain on this, but I believe that the $this variable is already just a reference to the class you are calling it from. Then passing the reference by-reference to the addParent() method of the Child class could be what is causing your issue. I'd be curious to see what would happen if

Re: [PHP] What software do you use for writing PHP?

2005-12-06 Thread Jochem Maas
John Nichel wrote: Jay Blanchard wrote: [snip] [snip] And for those interested in using a real computerFlameBate>, it's GUI also runs under MacOSX. [/snip] If they are "real" why aren't there more of them? Because they have 'real' price tags. Shame really, as OS X pisses all over Wind

[PHP] references, circular references, oop, and garbage collection in PHP5

2005-12-06 Thread Alan Pinstein
So.. I am having PHP5 memory management problems. They are similar to those described in this thread: http://aspn.activestate.com/ASPN/Mail/Message/php-Dev/1555640 (so maybe this question belongs on php-dev but I figured I'd try here first... seems like a userland question) Basically I have

Re: [PHP] Forum

2005-12-06 Thread Dotan Cohen
On 12/6/05, Andy Pieters <[EMAIL PROTECTED]> wrote: > On Tuesday 06 December 2005 21:25, you boldly pressed keys on your keyboard to > form this message: > > One big problem that I have had is with forum spam. Phpbb makes it > > easy to control. I won't go into all the details, but you could > > re

Re: [PHP] Assigns True but not false?

2005-12-06 Thread Andy Pieters
On Tuesday 06 December 2005 17:38, Gabe wrote: > $this->m_arrQuesInfo[$this->m_itemID]['blnVacPromo'] = ( ( > !empty($_POST['vac_promo']) ) && ( $_POST['vac_promo'] == 'on' ) ) ? > TRUE : FALSE; I have a habit of casting true or false to boolean so that I'm sure they're not interpreted as 1 or 0.

Re: [PHP] Forum

2005-12-06 Thread Dotan Cohen
On 12/6/05, Larry E. Ullman <[EMAIL PROTECTED]> wrote: > >>> Does anyone of you know of a good forum that is easy to customize > >>> and > >>> supports sticky notes, user registration, bb code and stuff like > >>> that? > > I would suggest that Phorum (www.phorum.org) and phpBB > (www.phpbb.com) ar

Re: [PHP] What software do you use for writing PHP?

2005-12-06 Thread Eric Gorr
Jason Petersen wrote: Vim is my editor of preference. If I have to use Windows, I usually go with Homesite (because I already have a licensed copy) or Textpad (because it's better than Notepad). IDEs? Who needs 'em ;) Who? Anyone who understands just how useful a debugger can be in incre

RE: [PHP] What software do you use for writing PHP?

2005-12-06 Thread Mark Steudel
Neat, I'll have to check it out. -Original Message- From: Chris Boget [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 06, 2005 12:14 PM To: Mark Steudel; 'php' Subject: Re: [PHP] What software do you use for writing PHP? > When you say SlickEdit has a ftp client built in, is it a sepa

Re: [PHP] What software do you use for writing PHP?

2005-12-06 Thread Eric Gorr
On 6 Dec 2005, at 19:24, Jay Blanchard wrote: [snip] And for those interested in using a real computer, it's GUI also runs under MacOSX. [/snip] If they are "real" why aren't there more of them? Far to many people have fallen victim to the deception field emanating from Microsoft. The only kn

RE: [PHP] Redirects Safari vs Others

2005-12-06 Thread Mark Steudel
You are right, thank you for trying it out and letting me know. I went back and tested this again and it all worked. I then checked out my code where it didn't work and I had moved a single quote outside of the brackets, $_SERVER['PHP_SELF]' ... Oops. -Original Message- From: Dan Lowe [mai

Re: [PHP] What software do you use for writing PHP?

2005-12-06 Thread John Nichel
Jay Blanchard wrote: [snip] [snip] And for those interested in using a real computerFlameBate>, it's GUI also runs under MacOSX. [/snip] If they are "real" why aren't there more of them? Because they have 'real' price tags. Shame really, as OS X pisses all over Windows from a great heigh

RE: [PHP] Redirects Safari vs Others

2005-12-06 Thread Jay Blanchard
[snip] // Causes only Safiri to bomb header("location: ".$_SERVER['PHP_SELF']."?action=listentries&categoryid=".$id."&page=".$pagei d); exit; [/snip] Since PHP is processed server-side it has to be the URL causing Safari to bail. Have you echo'd out the URL to see what it is composed of? $foo = $

[PHP] Migration to PHP5

2005-12-06 Thread Christian Calloway
Hi, Does anyone have stats in terms of migration from 4 to 5, specifically I'd like to know if the bulk of PHP developers have begun to change-over. I am (was) a Java developer, but have been doing freelance/consultant work in PHP for two years and am still developing on PHP4 platform. I rememb

Re: [PHP] Redirects Safari vs Others

2005-12-06 Thread Dan Lowe
On Dec 6, 2005, at 2:55 PM, Mark Steudel wrote: Sorry it took me so long, I wasn't sure where the problem lay and couldn't get you the exact code, but I figured out why (sorta) this was happening. // Causes only Safiri to bomb header("location: ".$_SERVER['PHP_SELF']."?action=listentries&c

Re: [PHP] What software do you use for writing PHP?

2005-12-06 Thread Chris Boget
When you say SlickEdit has a ftp client built in, is it a separate window that gets launched, or is it more integrated, like you can just right click on your list of files and say "put" these files up on the server. It's integrated. thnx, Chris -- PHP General Mailing List (http://www.php.n

RE: [PHP] What software do you use for writing PHP?

2005-12-06 Thread Jay Blanchard
[snip] > [snip] > And for those interested in using a real computer FlameBate>, > it's > GUI also runs under MacOSX. > [/snip] > > If they are "real" why aren't there more of them? Because they have 'real' price tags. Shame really, as OS X pisses all over Windows from a great height. Oh well, no

Re: [PHP] What software do you use for writing PHP?

2005-12-06 Thread Richard Davey
On 6 Dec 2005, at 19:24, Jay Blanchard wrote: [snip] And for those interested in using a real computerFlameBate>, it's GUI also runs under MacOSX. [/snip] If they are "real" why aren't there more of them? Because they have 'real' price tags. Shame really, as OS X pisses all over Windows fr

[PHP] Urlencode vs htmlentities

2005-12-06 Thread Mark Steudel
Lets say I have the following: Current URL: http://www.domain.com/page.php?action=list &top=/page.php?action=list&id=3 $top = $_SERVER['PHP_SELF'].'?'.$_SERVER['argv']['0'] Now I want to create a URL with a return lin

RE: [PHP] Redirects Safari vs Others

2005-12-06 Thread Mark Steudel
Sorry it took me so long, I wasn't sure where the problem lay and couldn't get you the exact code, but I figured out why (sorta) this was happening. // Causes only Safiri to bomb header("location: ".$_SERVER['PHP_SELF']."?action=listentries&categoryid=".$id."&page=".$pagei d); exit; Headers: htt

Re: [PHP] SSI problem with php after 4.3.10 -> 4.4.1 upgrade

2005-12-06 Thread kristina clair
In case anyone encounters this problem - using the latest 4.4.x snapshot fixed the problem for me (thanks, developers!). Kristina On 12/5/05, kristina clair <[EMAIL PROTECTED]> wrote: > On 12/5/05, Jay Blanchard <[EMAIL PROTECTED]> wrote: > > [snip] > > I'm having a problem with certain SSI files

Re: [PHP] What software do you use for writing PHP?

2005-12-06 Thread Ben
Jay Blanchard said the following on 12/06/2005 11:24 AM: [snip] And for those interested in using a real computer, it's GUI also runs under MacOSX. [/snip] If they are "real" why aren't there more of them? 'cause it's real expensive ;-). - Ben -- PHP General Mailing List (http://www.php.net/

Re: [PHP] Arrays

2005-12-06 Thread tg-php
This what you want? http://us3.php.net/manual/en/function.array-search.php -TG = = = Original message = = = If I have an array, such as $Var[0] = "Dog"; $Var[1] = "Cat"; $Var[2] = "Horse"; Is there a way to quickly check to see if $Var contains "Lion" without walking through each value? ___

Re: [PHP] What software do you use for writing PHP?

2005-12-06 Thread Stephen Leaf
Wow.. Linux must really be real then.. look at all the distributions , kernel patch sets, Window managers, etc. # of programs means nothing. it's the quality of the programs. And yes I am a linux user ;) On Tuesday 06 December 2005 13:24, Jay Blanchard wrote: > [snip] > And for those interested

Re: [PHP] What software do you use for writing PHP?

2005-12-06 Thread Michael Crute
On 12/6/05, Ben <[EMAIL PROTECTED]> wrote: > Michael Crute said the following on 12/06/2005 09:53 AM: > > On 12/6/05, Richard Davey <[EMAIL PROTECTED]> wrote: > > Indeed, if you are bad at VI things go very slow but if you are good > > at VI (I am semi-good) you can code FAR faster than any GUI I h

RE: [PHP] What software do you use for writing PHP?

2005-12-06 Thread Jay Blanchard
[snip] And for those interested in using a real computer, it's GUI also runs under MacOSX. [/snip] If they are "real" why aren't there more of them? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] What software do you use for writing PHP?

2005-12-06 Thread Eric Gorr
Quoting Torgny Bjers <[EMAIL PROTECTED]>: I recommend Zend Studio if you can afford it since it has a GUI for both Windows and Linux And for those interested in using a real computer, it's GUI also runs under MacOSX. http://zend.com/store/products/zend-studio/requirements.php -- PHP General

Re: [PHP] What software do you use for writing PHP?

2005-12-06 Thread Ben
Michael Crute said the following on 12/06/2005 09:53 AM: On 12/6/05, Richard Davey <[EMAIL PROTECTED]> wrote: Indeed, if you are bad at VI things go very slow but if you are good at VI (I am semi-good) you can code FAR faster than any GUI I have ever used. If you take the upfront time to learn

RE: [PHP] What software do you use for writing PHP?

2005-12-06 Thread Mark Steudel
When you say SlickEdit has a ftp client built in, is it a separate window that gets launched, or is it more integrated, like you can just right click on your list of files and say "put" these files up on the server. For me just being able to save and have the file get uploaded saves me a lot of e

Re: [PHP] What software do you use for writing PHP?

2005-12-06 Thread Chris Boget
I primarily code in Dreamweaver 8. Two of my favorite features that were added from MX are as follows: 1. Code folding, basically you can collapse blocks of code. SlickEdit has this feature. 2. The built in FTP client. This one as well. I used Dreamweaver a while back (admittedly an older

Re: [PHP] What software do you use for writing PHP?

2005-12-06 Thread Michael Crute
On 12/6/05, Richard Davey <[EMAIL PROTECTED]> wrote: > On 6 Dec 2005, at 17:36, M. Sokolewicz wrote: > > > Jason Petersen wrote: > >> On 12/6/05, Jeff McKeon <[EMAIL PROTECTED]> wrote: > >> Vim is my editor of preference. If I have to use Windows, I > >> usually go with > >> Homesite (because I al

Re: [PHP] What software do you use for writing PHP?

2005-12-06 Thread Richard Davey
On 6 Dec 2005, at 17:36, M. Sokolewicz wrote: Jason Petersen wrote: On 12/6/05, Jeff McKeon <[EMAIL PROTECTED]> wrote: Vim is my editor of preference. If I have to use Windows, I usually go with Homesite (because I already have a licensed copy) or Textpad (because it's better than Notepad

Re: [PHP] Arrays

2005-12-06 Thread Richard Davey
On 6 Dec 2005, at 17:33, Ben Miller wrote: If I have an array, such as $Var[0] = "Dog"; $Var[1] = "Cat"; $Var[2] = "Horse"; Is there a way to quickly check to see if $Var contains "Lion" without walking through each value? Look in the manual at the function in_array() Cheers, Rich -- http:

RE: [PHP] Arrays

2005-12-06 Thread Jay Blanchard
[snip] Is there a way to quickly check to see if $Var contains "Lion" without walking through each value? [/snip] http://us3.php.net/in_array -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] What software do you use for writing PHP?

2005-12-06 Thread M. Sokolewicz
Jason Petersen wrote: On 12/6/05, Jeff McKeon <[EMAIL PROTECTED]> wrote: Hey all, Forever now I've been using Frontpage for all my web work including php. I'm sure there's better software out there that is more suited to writing and editing PHP pages. What do you all use? Vim is my editor

Re: [PHP] What software do you use for writing PHP?

2005-12-06 Thread Richard Davey
On 6 Dec 2005, at 17:25, Mark Steudel wrote: ZS has code folding too, but just for functions. Someone else mentioned support for phpDoc, this is an awesome time saver if you want to provide clear documentation in phpdoc format. One big bummer on ZS was that it didn't have a built in FTP clie

[PHP] Arrays

2005-12-06 Thread Ben Miller
If I have an array, such as $Var[0] = "Dog"; $Var[1] = "Cat"; $Var[2] = "Horse"; Is there a way to quickly check to see if $Var contains "Lion" without walking through each value? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] What software do you use for writing PHP?

2005-12-06 Thread Mark Steudel
I primarily code in Dreamweaver 8. Two of my favorite features that were added from MX are as follows: 1. Code folding, basically you can collapse blocks of code. If you have to work with other peoples code, matching braces and code folding is an awesome way of just seeing the logical flow of the

Re: [PHP] Unnecessary if statement? Programming technique

2005-12-06 Thread tg-php
This is probably going to sound strange, but I like to try to think outside the box (buzzphrase!) and hit things at odd angles. Would someone care to test (or already know) the performance difference between a "for" loop and a "foreach" loop? Or the performance difference over many iterations o

Re: [PHP] Forum

2005-12-06 Thread David Grant
Larry E. Ullman wrote: Does anyone of you know of a good forum that is easy to customize and supports sticky notes, user registration, bb code and stuff like that? http://fudforum.org/features.php I've heard lots about it, but never used it. Cheers, David Grant -- David Grant http://

Re: [PHP] Forum

2005-12-06 Thread John Nichel
Andy Pieters wrote: On Tuesday 06 December 2005 16:16, John Nichel wrote: Andy Pieters wrote: Hi list Does anyone of you know of a good forum that is easy to customize and supports sticky notes, user registration, bb code and stuff like that? I'm sure Google knows. The difference with go

Re: [PHP] Forum

2005-12-06 Thread Larry E. Ullman
Does anyone of you know of a good forum that is easy to customize and supports sticky notes, user registration, bb code and stuff like that? I would suggest that Phorum (www.phorum.org) and phpBB (www.phpbb.com) are the two biggies (written in PHP). Both have all these features plus many

Re: [PHP] Forum

2005-12-06 Thread John Nichel
Jay Blanchard wrote: [snip] I'm sure Google knows. [/snip] Google knows everything[refrain from putting some terse comment concerning certain products which have caused me to curse so much that I will only have coals & switches in my stocking this Christmas] What concerns me is that you'r

RE: [PHP] Forum

2005-12-06 Thread Robert Cummings
On Tue, 2005-12-06 at 11:22, Jay Blanchard wrote: > [snip] > I'm sure Google knows. > [/snip] > > > Google knows everything[refrain from putting some terse comment > concerning certain products which have caused me to curse so much that I > will only have coals & switches in my stocking this

Re: [PHP] Forum

2005-12-06 Thread Andy Pieters
On Tuesday 06 December 2005 16:16, John Nichel wrote: > Andy Pieters wrote: > > Hi list > > > > Does anyone of you know of a good forum that is easy to customize and > > supports sticky notes, user registration, bb code and stuff like that? > > I'm sure Google knows. The difference with google and

RE: [PHP] Forum

2005-12-06 Thread Jay Blanchard
[snip] I'm sure Google knows. [/snip] Google knows everything[refrain from putting some terse comment concerning certain products which have caused me to curse so much that I will only have coals & switches in my stocking this Christmas] -- PHP General Mailing List (http://www.php.net/) To

Re: [PHP] Forum

2005-12-06 Thread John Nichel
Andy Pieters wrote: Hi list Does anyone of you know of a good forum that is easy to customize and supports sticky notes, user registration, bb code and stuff like that? I'm sure Google knows. -- John C. Nichel IV Programmer/System Admin (ÜberGeek) Dot Com Holdings of Buffalo 716.856.9675 [EM

Re: [PHP] Unnecessary if statement? Programming technique

2005-12-06 Thread David Grant
Hi, I imagine this kind of thing is not especially taxing on the processor, especially if the condition is a fairly simple comparison. That said, I have very little understanding aside from my own limited experience of what runs slowly! If you're worried about code maintenance, then move the cod

Re: [PHP] HTTP User Authentication Problems

2005-12-06 Thread Rahul S. Johari
Ave, Steve, I did a phpinfo() on my webhost and as it turns out, they are using a CGI binary version, much to my surprise and dismay. Anyhow... Do I have any alternatives for an http authentication kind of authentication ? Thanks, Rahul S. Johari Coordinator, Internet & Administration Informed

[PHP] Forum

2005-12-06 Thread Andy Pieters
Hi list Does anyone of you know of a good forum that is easy to customize and supports sticky notes, user registration, bb code and stuff like that? With kind regards Andy -- Now listening to Top! Radio Live www.topradio.be/stream on amaroK Geek code: www.vlaamse-kern.com/geek Registered Li

Re: [PHP] What software do you use for writing PHP?

2005-12-06 Thread Jesper Gran
If you're allready using Visul Studio for your windows applications, take a look at VS.Php from Jcx.Software. http://www.jcxsoftware.com/ Jesper -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] What software do you use for writing PHP?

2005-12-06 Thread Arno Kuhl
Nusphere PhpED and love it. Tried a few other editors but stayed with PhpED now for the last year and about to renew my subscription. Excellent project management, brilliant debugger (local and remote), code error detection and highlighting, fast (much faster than the java editors), able to handle

Re: [PHP] What software do you use for writing PHP?

2005-12-06 Thread David Grant
According to http://kate.kde.org/info.php, kate and kwrite (and Quanta) all use katepart (a rewrite of kwrite). Stephen Leaf wrote: > As far as I can tell kate has a kwrite embedded :) I'm sure that's not the > case but it seems like it. everything kwrite can do so can kate. only it has > more o

Re: [PHP] Unnecessary if statement? Programming technique

2005-12-06 Thread Steve McGill
Hi, David is right about the unwanted side-effect. Thanks for the idea though. Unfortunately the 'greater problem' is not so great, I've just been doing this for a while now and find myself programming loops like these so often and I've never got round to testing if a simple IF statement is a maj

Re: [PHP] What software do you use for writing PHP?

2005-12-06 Thread Stephen Leaf
As far as I can tell kate has a kwrite embedded :) I'm sure that's not the case but it seems like it. everything kwrite can do so can kate. only it has more options that I'd never used. And yes Code folding is nice don't use it much tho. On Tuesday 06 December 2005 09:48, David Grant wrote: > S

[PHP] Communicate with Windows Media Server with PHP

2005-12-06 Thread Graham Anderson
Is there a repository of php scripts that can communicate with Windows Media Server I am looking to do some load balancing with our 4 media servers in San Jose, Washington, Dallas, London Essentially, I need to get the number of current users on a particular server. If the server has over

Re: [PHP] What software do you use for writing PHP?

2005-12-06 Thread David Grant
Stephen Leaf wrote: > KWrite part of KDE. Notepad with Syntax Highlighting and AutoIndention. > And because it's part of KDE all the kioslaves come with. Which means editing > sites over ftp, ftps, ssh and many others is possible. > Like the Vim guy said. DEs? who needs them :) Mmmm, reminds me o

Re: [PHP] Unnecessary if statement? Programming technique

2005-12-06 Thread David Grant
Jared Williams wrote: > Why not > > for ($i = 0; $i < 100/100; ++$i) This involves dividing 100 by 100 for each iteration of the loop. It would be better to test against 1. There is also the unwanted side-effect of executing the code on each hundredth iteration, which is unwanted (as

Re: [PHP] What software do you use for writing PHP?

2005-12-06 Thread Stephen Leaf
KWrite part of KDE. Notepad with Syntax Highlighting and AutoIndention. And because it's part of KDE all the kioslaves come with. Which means editing sites over ftp, ftps, ssh and many others is possible. Like the Vim guy said. DEs? who needs them :) On Tuesday 06 December 2005 08:15, Jeff McKeon

Re: [PHP] What software do you use for writing PHP?

2005-12-06 Thread Chris Boget
HomeSite. I tried several others but always came back to HomeSite. :) I was a massive HomeSite proponent until I started using SlickEdit. Once I did, I never looked back. thnx, Chris -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Unnecessary if statement? Programming technique

2005-12-06 Thread Jared Williams
Hi, Why not for ($i = 0; $i < 100/100; ++$i) { for ($j = 0; $j < 100; ++$j) { // do something standard } // do something special for this occurence } Jared > -Original Message- > From: Steve McGill [mailto:[EMAIL PROTECTED] > Sent: 06 December 2005 10:1

Re: [PHP] What software do you use for writing PHP?

2005-12-06 Thread Jason Petersen
On 12/6/05, Jeff McKeon <[EMAIL PROTECTED]> wrote: > > Hey all, > > Forever now I've been using Frontpage for all my web work including php. > I'm sure there's better software out there that is more suited to > writing and editing PHP pages. What do you all use? > Vim is my editor of preference.

[PHP] Re: What software do you use for writing PHP?

2005-12-06 Thread Al
Jeff McKeon wrote: Hey all, Forever now I've been using Frontpage for all my web work including php. I'm sure there's better software out there that is more suited to writing and editing PHP pages. What do you all use? Thanks, Jeff http://www.waterproof.fr/products/PHPEdit/ -- PHP General

Re: [PHP] What software do you use for writing PHP?

2005-12-06 Thread [EMAIL PROTECTED]
HomeSite. I tried several others but always came back to HomeSite. :) -afan Jeff McKeon wrote: >Hey all, > Forever now I've been using Frontpage for > all my web work including php. > I'm sure there's better software out there that is more > suited to writing and editing PHP pages. > What

Re: [PHP] What software do you use for writing PHP?

2005-12-06 Thread John Nichel
David Grant wrote: Hi Jeff, Jeff McKeon wrote: What is it you like about Zend Studio? * Code completion * Syntax highlighting for PHP, HTML and CSS * Manual pages * Debugging * Code examination * PHPDoc * CVS & SVN support Also: MySQL Tools SFTP & FTP Projects PHPDocumentor -- John C. N

Re: [PHP] What software do you use for writing PHP?

2005-12-06 Thread John Nichel
Jeff McKeon wrote: Hey all, Forever now I've been using Frontpage for all my web work including php. I'm sure there's better software out there that is more suited to writing and editing PHP pages. What do you all use? Now: Zend Studio In The Past : Quanta, Komodo When I Still In Hell (Like

Re: [PHP] What software do you use for writing PHP?

2005-12-06 Thread Gustavo Narea
Hi. £ukasz Hejnak wrote: I use Bluefish, it's a very nice GTK+ based editor, with all types of code highlightning (html, php, c/c++, pascal, java, python are just a part of it). And that's pretty much all the features of it I use, maybe also the well written replace method. Besides that I use

Re: [PHP] What software do you use for writing PHP?

2005-12-06 Thread Joe Harman
I have to say Dreamweaver MX also it's a great all around tool for developing sites... while it may not have all the features and be as PHP specific as Zend it gets the job done. I've learned that it's just a personal preference the best coder i've ever met used note pad LOL Joe On

Re: [PHP] HTTP User Authentication Problems

2005-12-06 Thread Steve McGill
Hi Rahul, Try doing a print_r($_SERVER) to see if the variables are being set. If they aren't, take a look at the phpinfo(); -> chances are your host is using a CGI binary version of PHP to use together with a security wrapper like suPHP or phpSuExec, which might throw away the variables that y

RE: [PHP] What software do you use for writing PHP?

2005-12-06 Thread George Pitcher
I've used Dreamweaver MX, working with 9 remote sites, shared between IIS and Apache. George > -Original Message- > From: Jeff McKeon [mailto:[EMAIL PROTECTED] > Sent: 6 December 2005 2:15 pm > To: php > Subject: [PHP] What software do you use for writing PHP? > > > Hey all, > > Forever n

RE: [PHP] What software do you use for writing PHP?

2005-12-06 Thread Jeff McKeon
What is it you like about Zend Studio? Jeff > -Original Message- > From: David Grant [mailto:[EMAIL PROTECTED] > Sent: Tuesday, December 06, 2005 09:19 > To: Jeff McKeon > Cc: php > Subject: Re: [PHP] What software do you use for writing PHP? > > > Jeff, > > Jeff McKeon wrote: > > For

Re: [PHP] What software do you use for writing PHP?

2005-12-06 Thread Chris Boget
Forever now I've been using Frontpage for all my web work including php. I'm sure there's better software out there that is more suited to writing and editing PHP pages. What do you all use? I use Visual SlickEdit. You should check it out; it's a very powerful IDE. http://www.slickedit.com th

Re: [PHP] What software do you use for writing PHP?

2005-12-06 Thread Łukasz Hejnak
Jeff McKeon napisał(a): Hey all, Forever now I've been using Frontpage for all my web work including php. I'm sure there's better software out there that is more suited to writing and editing PHP pages. What do you all use? I use Bluefish, it's a very nice GTK+ based editor, with all types of

Re: [PHP] What software do you use for writing PHP?

2005-12-06 Thread Torgny Bjers
Quoting Michael Crute <[EMAIL PROTECTED]>: On 12/6/05, Jeff McKeon <[EMAIL PROTECTED]> wrote: Hey all, Forever now I've been using Frontpage for all my web work including php. I'm sure there's better software out there that is more suited to writing and editing PHP pages. What do you all use?

Re: [PHP] What software do you use for writing PHP?

2005-12-06 Thread David Grant
Hi Jeff, Jeff McKeon wrote: > What is it you like about Zend Studio? * Code completion * Syntax highlighting for PHP, HTML and CSS * Manual pages * Debugging * Code examination * PHPDoc * CVS & SVN support Cheers, David -- David Grant http://www.grant.org.uk/ -- PHP General Mailing List (htt

Re: [PHP] What software do you use for writing PHP?

2005-12-06 Thread Michael Crute
On 12/6/05, Jeff McKeon <[EMAIL PROTECTED]> wrote: > Hey all, > > Forever now I've been using Frontpage for all my web work including php. > I'm sure there's better software out there that is more suited to > writing and editing PHP pages. What do you all use? > > Thanks, > > Jeff Actually, there

  1   2   >