Re: [PHP] Speed Issues PHP vs ASP.net

2009-08-25 Thread Bastien Koert
On Tue, Aug 25, 2009 at 10:37 AM, kyle.smith wrote: > > -Original Message- > Recently i read this blog post about speed issues comparing PHP with > ASP.net, please, read that and comment what you think about it: > http://misfitgeek.com/blog/aspnet/php-versus-asp-net-ndash-windows-versu > s-

RE: [PHP] Speed Issues PHP vs ASP.net

2009-08-25 Thread kyle.smith
-Original Message- Recently i read this blog post about speed issues comparing PHP with ASP.net, please, read that and comment what you think about it: http://misfitgeek.com/blog/aspnet/php-versus-asp-net-ndash-windows-versu s-linux-ndash-who-rsquo-s-the-fastest/ The big deal is: I don't

Re: [PHP] Speed issues.

2002-07-28 Thread Yves Vrancken
Thanks for the help, guys . I appreciate it. And Bas, thanks for that link. Interesting material for a novice PHP-user as myself. Yves Vrancken -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Speed issues.

2002-07-28 Thread John Holmes
> I am new to PHP and trying to implement some PHP and MySQL on my website. > My > website has a lot of tables and inside some of those tables, I want to > display information that is drawn out of the MySQL database using PHP. I > was > wondering what goes faster: > > (A). Building the whole page

Re: [PHP] Speed issues.

2002-07-28 Thread Bas Jobsen
Hello, You can also find something about your questions on: http://www.php9.com/index.php/section/articles/name/PHP%20Guidelines I had tested out by printing (repeated times): 1) echo ''.$k.': hallo '.$string.', dit is het'."\n"; 2) echo "$k: hallo $string, dit is het"."\n"; 3) ?>: hallo , dit i

Re: [PHP] Speed issues.

2002-07-28 Thread Yves Vrancken
I didn't expect it to make too much of a difference. Thank you for your answer. Yves Vrancken "Justin French" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I haven't noticed ANY performance hit by skipping in and out of PHP and HTML > when it suits me. > >

Re: [PHP] Speed issues.

2002-07-28 Thread Justin French
I haven't noticed ANY performance hit by skipping in and out of PHP and HTML when it suits me. I imagine there *might* be a slight performance hit if you were building a LOT of table information with print or echo or printf, but the general answer to your question is usually "whatever suits you b