Reputation: 29658
I want to upgrade to Zend Studio (currently using Netbeans), but I am slightly disappointed about how the formatter formats PHP in HTML attributes. Given this:
<tr bgcolor="<?php echo "red"; ?>">
Zend Studio will format it similar to this:
<tr bgcolor="<?php
echo "red";
?>">
Has anyone been able to change this behavior? Thank you,
Upvotes: 2
Views: 686
Reputation: 3458
Few comments about the pros and cons of short tags here: PHP echo vs PHP short tags
Slightly off topic but I recommend you use CSS not bgcolour for your colours etc.
Upvotes: 0