PHP For Designers : Comments
March 31, 2004
Comments
Just a note about single-vs-double quotes and variables. You can always use the concatenate operator: . (a period).
Instead of:
echo “I have $number_cds CDs.”;
You could do:
echo ‘I have ‘.$number_cds.’ CDs.’;
A small speed savings, yes, but a savings, nonetheless.
and what for a editor you think are the best?
Alex,
Anything that highlights the various keywords and functions. One example is JEdit. It is very easy to install, free, and written in java (so you can install it on systems where you don’t have admin priveleges).
Try HTML-Kit or Crimson Editor for editors. They are free (I believe) and both offer highlighting of syntax. Nice article, although you’re barely touching the surface of PHP.
Tiffany: I guess it’s a battle between being fast and being readable, which I think tends to be lost by the factor ‘speed’ when complexity grows.
Alex: good old gEdit comes with (almost?) every single Linux distro, and is presently capable of PHP-syntax highlighting — as well as other languages’, too.
and last, but not least, Matt (Mullenweg): good article, but I am forced to agree with Matt (Galaviz)—the article is not quite a technical PHP document (not even a “PHP 101”), but rather an excelent teaser to those who are skeptical about using MUST :p">PHP.
I Prefer DreamWeaver. It is awesome, and if you want some free space to try out you code with mysql and phpmyadmin you can email me and get up to a gb for free. Domains are $10 per year. otherwise get a subdomain of dmtdm.net for free.



You can use this
feed to keep up with the comments made on this article.