I've been using Eclipse for a while.
Some of my pages now incorporate jQuery in addition to PHP. Are there any IDEs that support both PHP and jQuery/javascript at the same time?
What's your favorite IDE?
Search found 8 matches
- Thu Sep 22, 2011 3:17 pm
- Forum: PHP - Code
- Topic: What IDE do you use for PHP development?
- Replies: 5
- Views: 537
- Sat Sep 17, 2011 1:24 pm
- Forum: PHP - Code
- Topic: Oracle-PHP connectivity Issue or Is it?
- Replies: 3
- Views: 590
Re: Oracle-PHP connectivity Issue or Is it?
Hi saranyaharikrish712, Please correct me if I am wrong on any of the following points: 1) You are passing data to an Oracle stored procedure that has 5 input parameters and one output parameter. 2) Sometimes when you call the procedure the value returned by the output parameter matches an expected ...
- Tue Sep 06, 2011 12:18 pm
- Forum: PHP - Theory and Design
- Topic: PHP web application deployment strategy
- Replies: 3
- Views: 8835
Re: PHP web application deployment strategy
I recommend that you get hold of Matt Zandstra's book 'PHP Objects, Patterns and Practice'. Lots of good stuff in there including: Chapter 19 - 'Automated Build with Phing'.
- Tue Sep 06, 2011 11:39 am
- Forum: PHP - Code
- Topic: Sorting an XML list...
- Replies: 5
- Views: 709
Re: Sorting an XML list...
You're welcome.
- Mon Sep 05, 2011 6:06 pm
- Forum: PHP - Code
- Topic: Sorting an XML list...
- Replies: 5
- Views: 709
Re: Sorting an XML list...
Here is my solution. It's not very elegant but it works! <?php $myXml = ' <training> <course> <startdate>2011-29-02</startdate> <displaydate>29th February - 5th March</displaydate> <name>CCR Normoxic</name> <location>Malta</location> </course> <course> <startdate>2011-29-04</startdate> <displaydate>...
- Mon Sep 05, 2011 3:54 pm
- Forum: PHP - Theory and Design
- Topic: Compiled PHP? GUI?
- Replies: 9
- Views: 8565
Re: Compiled PHP? GUI?
I don't get you.
Isn't HTML is the natural GUI for PHP? Aren't there WYSIWYG design tools for HTML? I don't use any though as I prefer to hand code the presentation layer pages to keep them simple.
Isn't HTML is the natural GUI for PHP? Aren't there WYSIWYG design tools for HTML? I don't use any though as I prefer to hand code the presentation layer pages to keep them simple.
- Mon Sep 05, 2011 3:34 pm
- Forum: PHP - Theory and Design
- Topic: Use a multiple functions or just one with more arguments?
- Replies: 4
- Views: 4450
Re: Use a multiple functions or just one with more arguments
An alternative approach would be to consider an interface: <?php interface Expense { public function getCost(); } class fees implements Expense { public function getCost() { // Code to calculate fees goes here. $fees = 100; return $fees; } } class shipping implements Expense { public function getCos...
- Tue Aug 23, 2011 2:49 pm
- Forum: PHP - Theory and Design
- Topic: php / Oracle design question
- Replies: 0
- Views: 2143
php / Oracle design question
Hi all, I'm new to php but not to programming. I've chosen php as the the language to write a front end to an Oracle database because I want something straight forward and quick to develop a UI in and php seems to fit the bill. So why am I here? Well I have a design question and I like some input fr...