Ajax PHP Development Environment Suggestions

I am a professional C/C++ , but I created a couple of personal websites using PHP and MySQL .

They are pretty simple, and I would like to rekindle them using Ajax , but I never did Ajax. I have done all development so far manually, i.e. No IDE or anything like that.

Does anyone have any suggestions on Ajax development environments that can help me?

Shareware or freeware would be preferable, since it would be difficult for me to justify expenses in excess of the minimum amount of money on this ...

+4
source share
6 answers

As TO says, try Aptana. There is a very good free version, and they really click AJAX. They even have Jaxer, the "AJAX Server" they are working on. If nothing else, the plugins are great, and besides a few quirks, I really enjoy working in it.

+2
source

If you want an IDE, try Aptana Studio . It supports HTML, CSS, JavaScript, PHP, XML, Ruby, Ruby on Rails and more ....

+2
source

Aptana is a supposedly decent Javascript development environment. I myself just use Eclipse and a decent javascript framework like jQuery , which has simple syntax.

+2
source

Moving your own AJAX is somewhat deprecated in the presence of Javascript libraries such as Prototype and JQuery. I would recommend looking into one of these libraries (Jeff used JQuery for SO, and he was really impressed with this from what I understand).

As for the development environment, I do not know that there are many. A typical text editor with syntax highlighting will do the trick for writing (e.g. Notepad ++). For debugging, take a look at the Firebug extension for Firefox (although if you are using jQuery, the debugging tool might not be as useful).

+1
source

First of all, make sure you understand the basics of the HTTP protocol. Then find out how the javascript httpXmlRequest function works. Once you embrace them, select the Ajax library - the prototype is good.

Then check out a few examples and follow the API.

The task is completed.

I seriously don’t know how they manage to write whole books on this subject.

Edit: Why vote? Learning the basics first gives you a much better idea of ​​how this works. And yes, I believe that Jeff should also learn C; -P

0
source

Sajax is another good PHP toolkit.

Basically, although I prefer using a Javascript framework like Jquery or Prototype

0
source

Source: https://habr.com/ru/post/1276413/


All Articles