Re: [PHP] PHP Editor

2001-05-12 Thread tcuhost
I use textpad. http://www.textpad.com. You can arrange your own coloring config and there are some very cool elements about it there are even modules to load into it for added functionality once you use it you will never go back..mmuuwwahahahaha - Original Message - From:

[PHP] Demonstration of Passing Objects

2001-05-11 Thread tcuhost
Thanks for your help in the Vol I and Vol II of passing variables. I have put up a quick little page to show the passing of variables and the correction suggested here by Pevel. Kalian http://24.11.192.82/objects/ sometimes seeing the solution is the best way to learn. I am only going to leave

[PHP] Passing Objects Vol II

2001-05-10 Thread tcuhost
hmm well I tried it perhaps another step is in order. Once I can see it work once I will be happy. // // index.php contains: // pre ?php include( classes.inc ); $myInstance=new Main( $REMOTE_HOST , nick , zzyzx , true); echo

[PHP] English ISP

2001-05-08 Thread tcuhost
A good friend of mine just moved to England. Devon to be exact. He's having quite a time finding a reliable internet provider. Anybody know of any reliable providers in that area? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: [PHP] Multi Dimensional Arrays?

2001-05-07 Thread tcuhost
I would have to say you would need a nested for loop to count your array. $j = 0 ; $k = 0 ; for ( ; $j != '' ) ; $j++ ) { //top of the col. echo $main_menu[$j][$k]br; for ( $k = 1; $k != '' ; $k++ ) { // then everything

Re: [PHP] Passing variables to another page - newbie

2001-05-06 Thread tcuhost
also is you want to add more than one variable in the example given you use the '' Sign ex with one var: header(Location: http://something.foo.bar.com/page.extension?var1=etc;); ex with 3 vars: header(Location: http://something.foo.bar.com/page.extension?var1=etcvar2=123var3=abc;); -