Tumult HyperEdit - 1.6HTML & PHP editor with live preview pane |
|
||||||||||||||||
|
|||||||||||||||||
Feedback Summary:
| This Version: | |||||
| Overall Rating: | Not rated (0.0) | Features: | Not rated (0.0) | Support: | Not rated (0.0) |
| Ease of Use: | Not rated (0.0) | Quality / Stability: | Not rated (0.0) | Price: | Not rated (0.0) |
Key to Types of Feedback:
Reviews
Troubleshooting
Usage Tips
Developer Notes
Commentary
Featured Reviews
HyperEdit nice little gem 



- Version: 1.5.3, 12/21/2007 10:25AM PST
wutwoming
That's one of the coolest text editors out there for Mac OS X.
Clean interface, brilliant preview pane UI and just what you need for HTML, CSS and JavaScript. If you do PHP too, then you don't need anything else to do your web programming.
Highly recomended!
Clean interface, brilliant preview pane UI and just what you need for HTML, CSS and JavaScript. If you do PHP too, then you don't need anything else to do your web programming.
Highly recomended!
Used to be good... 



- Version: 1.5.2, 11/20/2007 12:26AM PST
johnnylegz
I used to use this as my html editor, but can't get my version to register any longer and can't get the dev. to email me. Pretty lame and sad.
Most Recent Replies: View All 2 Replies
- Used to be good... (1 replies)
In my quest to tackle classes, I'm trying out this script:
class dog {
public $Name;
public function bark() {
print "Woof!\n";
}
}
class poodle extends dog {
public function bark() {
print "Yip!\n";
}
}
$poppy = new poodle;
$poppy->Name = "Poppy";
I'm getting parse errors. If I run the file in my browser, it behaves as expected. Any ideas why this is happening?
Otherwise, this does exactly what I need it to do, thanks!