Re: [PHP] Re: process creation

2009-01-24 Thread Per Jessen
Török Alpár wrote: as i said it's hate here, and i might be wrong but consider the following : for($icount=0;$icount11;$icount++) { $iPid = pcntl_fork(); $iChildrenCount = 0; if ($iPid == 0) { // child echo (child $icount\n); } else { // parrent }

Re: [PHP] Make New-Age Money Online with Google

2009-01-24 Thread Ashley Sheridan
On Sat, 2009-01-24 at 10:14 +0200, Dora Elless wrote: That's why I am sending this email only to people I know and care about. And they send to a mailing list. Come again? Ash www.ashleysheridan.co.uk -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] PHP 5.2.8 fails to find libiconv

2009-01-24 Thread Ro Achterberg
At 11:51 23-1-2009, Thodoris wrote: Hi, I'm attempting to install PHP 5.2.8 on CentOS 5.2 x86_64. The glibc iconv doesn't seem to function very well, leading to a bunch of failed tests when running 'make test' (see below). After a bit of Googling I stumbled upon

[PHP] Php error

2009-01-24 Thread mattias
ERR_DB_NO_DB_PASS What will this meen? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Php error

2009-01-24 Thread Per Jessen
mattias wrote: ERR_DB_NO_DB_PASS What will this meen? No database password has been set in config. /Per Jessen, Zürich -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Php error

2009-01-24 Thread Carlos Medina
mattias schrieb: ERR_DB_NO_DB_PASS What will this meen? The Database is a foreign DB without passport Carlos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP webhosting - USA

2009-01-24 Thread Martin Zvarík
Hi, I currently host my site by Powweb, and I am WANT to change it - can you guys recommend me something good? Powweb's website looks awesome and it's the best marketing I think I had saw! After a minute it makes you think there is NO better hosting - and it's a LIE. What happened to me?

[PHP] Re: PHP webhosting - USA

2009-01-24 Thread Tony Marston
I have been using www.lypha.com for 5 years without experiencing any of those problems. -- Tony Marston http://www.tonymarston.net http://www.radicore.org Martin Zvarík mzva...@gmail.com wrote in message news:ed.1b.55096.ccd2b...@pb1.pair.com... Hi, I currently host my site by Powweb, and

Re: [PHP] PHP webhosting - USA

2009-01-24 Thread Martin Zvarík
That's an awful looking website, but thanks for reply. I am looking for rather a US hosting company. Andrew Williams napsal(a): go to www.willandy.co.uk http://www.willandy.co.uk best value for money On Sat, Jan 24, 2009 at 3:03 PM, Martin Zvarík mzva...@gmail.com mailto:mzva...@gmail.com

Re: [PHP] PHP webhosting - USA

2009-01-24 Thread Alpár Török
I liked http://www.slicehost.com/ very much, but might not be what you want. 2009/1/24 Martin Zvarík mzva...@gmail.com Hi, I currently host my site by Powweb, and I am WANT to change it - can you guys recommend me something good? Powweb's website looks awesome and it's the best marketing

Re: [PHP] PHP webhosting - USA

2009-01-24 Thread TG
I've worked with a few different host providers in the course of my work. We have clients on CrystalTech, GoDaddy, HostMonster/BlueHost, HostMySite, and probably some others. I've had my own hosting at DreamHost for years now and I love them. They have their own homegrown control panel and

Re: [PHP] PHP webhosting - USA

2009-01-24 Thread Stephen
Martin Zvarík wrote: - my client stopped receiving orders, he called me after a week something is wrong. I found out that Powweb changed a MySQL settings, which nobody informed me about - they restricted a JOIN limit max to 3, the mysql_query SQL thus did not work and orders were not storing

Re: [PHP] PHP webhosting - USA

2009-01-24 Thread Daniel Brown
On Sat, Jan 24, 2009 at 10:03, Martin Zvarík mzva...@gmail.com wrote: Hi, I currently host my site by Powweb, and I am WANT to change it - can you guys recommend me something good? Powweb's website looks awesome and it's the best marketing I think I had saw! After a minute it makes you

Re: [PHP] PHP webhosting - USA

2009-01-24 Thread Michael Kubler
Hi, If your a windows user, then ignore the text below. Quantact.com are great. Great value, great support, I've been with them for a few years now. I guess the only downside is that while the bandwidth is great (both quota and speed), and the hard drive access is fast, the memory usage is

[PHP] Re: PHP webhosting - USA - conclusion

2009-01-24 Thread Martin Zvarík
I should have said in the beginning it's a small website and I am not looking for a dedicated server. Howewer, I decided to move to Lypha.com Thanks for all your fruitful* comments :) Martin PS: PHP mailgroup rulz *) that was in dictionary -- PHP General Mailing List (http://www.php.net/)

[PHP] New PHP User with a simple question

2009-01-24 Thread Christopher W
At least I hope it is simple... I am trying to get an HTML menu link to set a variable's value. For example, when a user clicks the Home button on my page it would cause $page = home; or clicking the About Us button will set $page=about_us; etc. I think this should be fairly simple but being

Re: [PHP] New PHP User with a simple question

2009-01-24 Thread Michael Kubler
The easiest way would be to use GET parameters (i.e data in the actual URL). There are a number of ways you can structure a HTML link to get what you want. You can have something basic (but not very elegant looking), like a href=index.php?page=HomeHome/a Then in your index.php code you'd

Re: [PHP] New PHP User with a simple question

2009-01-24 Thread Lars Torben Wilson
2009/1/24 Christopher W cwei...@adelphia.net: At least I hope it is simple... I am trying to get an HTML menu link to set a variable's value. For example, when a user clicks the Home button on my page it would cause $page = home; or clicking the About Us button will set $page=about_us; etc.

Re: [PHP] New PHP User with a simple question

2009-01-24 Thread Christopher W
Sorry, I am also new to the etiquette of these mail lists. Anyway what I was attempting to do, in the full picture, was be able to just switch the text in the text area without actually changing pages. For example, if the user clicks About Us (from the home page) the page doesn't change, just

Re: [PHP] New PHP User with a simple question

2009-01-24 Thread Christopher W
Mr. Kubler, Thank you for the help. I have to admit, I am still in over my head, I think. Perhaps I should just stick to static pages... Anyway what I was attempting to do, in the full picture, was be able to just switch the text in the text area without actually changing pages. For