Skip to main content

What are good PHP and MySQL type Blogs to read?



I searched and found many topics similar to this on Stackoverflow, but they were all for languages that I do not use. I am interested in reading good blogs with an RSS feed in topics related to PHP , MySQL , Javascript , jQuery . I have a few listed below so far, please share with me any blogs worth reading and subscribing to with any of these web related topics.





Here are some I enjoy now...





http://buildinternet.com


http://davidwalsh.name


http://www.9lessons.info


http://blog.perplexedlabs.com


http://blog.agilephp.com


http://www.barattalo.it


http://papermashup.com



Source: Tips4all

Comments

  1. Some sites and blogs in no specific order


    http://devzone.zend.com/
    http://php5.phpmagazine.net/
    http://c7y.phparch.com/
    http://planet-php.net/
    http://www.phpied.com/
    http://toys.lerdorf.com/
    http://ralphschindler.com/
    http://blog.phpdeveloper.org/
    http://www.whitewashing.de/
    http://weierophinney.net/matthew/
    http://sebastian-bergmann.de/blog/
    http://blog.calevans.com/
    http://phpro.org/


    Almost all of them use Twitter as well, so you can follow them there to stay updated. Basically, you want to follow or read the blogs and sites of all the guys involved either in PHP development or of the major frameworks.

    ReplyDelete
  2. Four of the definite PHP cutting edge leaders...

    Pádraic Brady (e.g. Mockery) - http://blog.astrumfutura.com/
    Matthew Weier O'Phinney (e.g. Zend Framework) - http://weierophinney.net/matthew/
    Sebastian Bergmann (e.g. phpUnit) - http://sebastian-bergmann.de/blog/
    Fabien Potencier (e.g. Symfony2) - http://fabien.potencier.org/

    ReplyDelete
  3. Two very good feed aggregation for lamp developers are:

    For MySQL
    http://planet.mysql.com

    For PHP
    http://devzone.zend.com

    ReplyDelete
  4. These are my two favourites

    http://weierophinney.net/matthew/ - It's more focused on the Zend Framework but still an interesting read

    http://schlueters.de/blog/

    ReplyDelete
  5. Good question, here is my list not the complete one:

    http://ajaxian.com/ jQuery, PHP, JS

    http://css-tricks.com/ CSS

    http://speckyboy.com/category/javascript/

    http://www.devinrolsen.com/ jQuery, PHP, JS, CSS

    http://scriptandstyle.com/ (Looks like bookmark)

    http://webdesignledger.com/

    http://jqueryfordesigners.com/ Focusing in jQuery

    http://www.learningjquery.com/

    http://designreviver.com/tutorials/

    http://skyje.com/category/tutorials/

    http://www.hongkiat.com/blog/ jQuery, PHP, JS, CSS

    ReplyDelete
  6. I would check out Phil Sturgeon's blog:

    http://philsturgeon.co.uk/

    ReplyDelete
  7. You could also subscribe to Planet PHP, which aggregates a lot of PHP-related blogs.

    ReplyDelete
  8. http://net.tutsplus.com/

    Not really a PHP blog. A general web dev blog. But has some good articles and webcasts. Highly recommended.

    ReplyDelete
  9. My favourite is Giorgio Sironi. He posts a lot about PHP testing, among other things.

    ReplyDelete

Post a Comment

Popular posts from this blog

Why is this Javascript much *slower* than its jQuery equivalent?

I have a HTML list of about 500 items and a "filter" box above it. I started by using jQuery to filter the list when I typed a letter (timing code added later): $('#filter').keyup( function() { var jqStart = (new Date).getTime(); var search = $(this).val().toLowerCase(); var $list = $('ul.ablist > li'); $list.each( function() { if ( $(this).text().toLowerCase().indexOf(search) === -1 ) $(this).hide(); else $(this).show(); } ); console.log('Time: ' + ((new Date).getTime() - jqStart)); } ); However, there was a couple of seconds delay after typing each letter (particularly the first letter). So I thought it may be slightly quicker if I used plain Javascript (I read recently that jQuery's each function is particularly slow). Here's my JS equivalent: document.getElementById('filter').addEventListener( 'keyup', function () { var jsStart = (new Date).getTime()...

Is it possible to have IF statement in an Echo statement in PHP

Thanks in advance. I did look at the other questions/answers that were similar and didn't find exactly what I was looking for. I'm trying to do this, am I on the right path? echo " <div id='tabs-".$match."'> <textarea id='".$match."' name='".$match."'>". if ($COLUMN_NAME === $match) { echo $FIELD_WITH_COLUMN_NAME; } else { } ."</textarea> <script type='text/javascript'> CKEDITOR.replace( '".$match."' ); </script> </div>"; I am getting the following error message in the browser: Parse error: syntax error, unexpected T_IF Please let me know if this is the right way to go about nesting an IF statement inside an echo. Thank you.