answersLogoWhite

0

== == == == 1. The first step is to install a webserver. If you haven't installed one already, you have two choices: either install each component separate or install an already packaged bundle. a) If you choose to install the bundle, there are many choices available to you. You can try Xampp or Wamp. Those two bundle will install for you Apache Web Server - a web server -, MySQL - a database server -, PHP - the programming language - and some other server related stuff such as an FTP server. When the installation is complete pass to the next step. b) If you choose to install the components separated, you'll need a web server, a database server and PHP. For the web server, the recommendation is Apache Web Server ( http://httpd.apache.org/download.cgi ). For PHP, taking the latest version is the best ( http://www.php.net/downloads.php ). For the database, MySQL is widely used with PHP and Apache ( http://dev.mysql.com/downloads/ ). 2. Determine if an AJAX framework will be used. If using a framework is chosen, the most common framework and jQuery ( http://jquery.com/ ) and Prototype ( http://www.prototypejs.org/ ). 3. Write your code! There is also an option if you don't want to learn AJAX and JavaScript. The xajax Project ( http://xajaxproject.org/ ) lets you write your code in PHP and translates it into AJAX for you.

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

What was operation Ajax?

Unfortunately I am not specialst in AjaX, but I can advice you these online tutorials:php tutorials. There are many articles about php, AjaX and interaction between AjaX and PHP in whole.


How do you get require files through Ajax with PHP?

This question appears confused as PHP is a server side language, and AJAX relies on client side scripting such as javascript. AJAX can load a script with GET or POST arguments to either manipulate server data or insert data from the server into the current page's DOM, or (more commonly) both.


Is there any way to call a PHP script in HTML?

PHP is a server side language, so cannot run within the browser as HTML does. You can however make a call to the PHP page within your HTML (using a form button or anchor link for example), and using Ajax (javascript) make the HTML show the response of the PHP program. The user will not know that the server side PHP program has been executed, as when using Ajax the browser does not load a new page.


How do you configure yokogawa HIS in system view?

You can configure the Yokogawa HIS in system view through the enclosed system display. The control system will allow you to configure the system as desired.Ê


How was Facebook made?

The developers used PHP and also AJAX which allows real-time updating without having to refresh the page :)


How do you equate a php variable to a javascript variable?

Ideal thing would be to retrieve the value from PHP using AJAX and then assigning it to a java script variable. Thereafter compare it to the java script variable that is already present.


How can I submit multiple form's via a single submit button in PHP?

That must be done using a client-side scripting language such as AJAX.


How do you get data back and forth between HTML and PHP?

Via AJAX. Another simpler way would be to use form elements and submit them via html and let PHP process the data. Processed data can be output in html form via echo or print statements in php.


When i click the php query button its asking to open or save?

Clearly, this is a case of the server not knowing what to do, so it treats it like any other file.To run PHP scripts, you will need to configure your server to handle PHP files through the php-cgi or phpexecutable. For Apache, this is accomplished by editing httpd.confAdd the following to the httpd.conf file:PHPIniDir ""LoadModule php5_module ""AddHandler application/x-httpd-php .php


Ontextchanged select value from database and bind it with other textbox in php?

You will need to use AJAX for remote data retreival, depending on what you need, you can find simple and advanced resources on the internet (Ex: http://www.w3schools.com/PHP/php_ajax_database.asp).


Will Ajax cleanse your system from marijuana?

Yes, Ajax will clean your system! I have been on probation for 7 years and i smoke weed all day everyday and I use Ajax to clean my system! I only had 1 dirty test in 7 years, and that was before I found out about Ajax. Don't use too much, you will die!! Only use a teaspoon of it.


Does JavaScript interact with PHP?

Yes, JavaScript and PHP can interact with each other in web development. JavaScript is a client-side scripting language that runs in a user's browser, while PHP is a server-side language that runs on the server. The two languages can communicate with each other through the use of AJAX (Asynchronous JavaScript and XML) requests. JavaScript can make an AJAX request to a PHP script on the server, and the PHP script can process the request and return data back to the JavaScript code. This allows for dynamic, interactive web pages that can update their content without requiring a full page refresh. Overall, JavaScript and PHP are complementary technologies that can work together to create powerful web applications