Tuesday, February 16, 2021

How to Call a PHP Function From JavaScript

How to Call a PHP Function From JavaScript

PHP comes with a lot more built-in functions to work with strings, arrays and other types of data in comparison to JavaScript. Therefore, it is natural for a lot of people to feel the urge to call PHP functions from JavaScript. However, as you might have guessed or found out this does not work as expected.

There can be a lot of other cases, where you might want to run some PHP code inside JavaScript—for example to save some data on your server. Simply placing the PHP code inside JavaScript will not work in this case either.

The reason you can't simply call a PHP function from JavaScript has to do with the order in which these languages are run. PHP is a server side language and JavaScript is primarily a client-side language.

Whenever you want to visit a page, the browser sends a request to the server which then processes the request and generates some output by running the PHP code. The output or generated webpage is then sent back to you. The browser usually expects the webpage to consist of HTML, CSS and JavaScript. Any PHP that you might have placed or echoed inside JavaScript would either have run already or won't run at all when the webpage loads in the browser.

All hope is not lost though. In this tutorial, we will explain how you can call PHP functions from JavaScript and JavaScript functions from PHP.

Call a PHP Function From JavaScript

We can use AJAX to call a PHP function on data generated inside a browser. AJAX is used by a lot of websites to update parts of webpages without a full page reload. It can significantly improve user experience when done properly.

Keep in mind that the PHP code will still run on the server itself. We will just provide it data from within our script.

Using jQuery AJAX to run PHP Code

If you are using jQuery on your website, it becomes incredibly easy to call any PHP file with code that you want to run.

You can pass one or two parameters to the ajax() function. When two parameter are passed, the first one will be the URL of the webpage where the browser will send your request. When you pass only one parameter to ajax(), the URL will be specified in the configuration.

The second parameter contains a bunch of different configuration options to specify the data your intend to process and what to do in case of success or failure etc. The configuration options are passed in JSON format.

You can use the method parameter to specify the HTTP method which should be used for making the request. We will be setting it to POST because we will be sending data to the server as well.

Now, let's see an example of a basic AJAX request where we will pass data to a PHP file and call the PHP function wordwrap() within that file. Here is our complete webpage:

Place the following code in a file called wrap.php in the same directory.

Remember that you have to echo the data that you want to send back to the browser. Your webpage will look like the image below if everything goes well.

Calling PHP Function in JavaScript with AJAX

Using Fetch API to Run PHP Code

You can also use the Fetch API to run PHP code on data collected inside the browser by sending a POST request to the server. In the previous example, we could replace the AJAX code with the following JavaScript to get the exact same result.

Just like the AJAX example, we specify the URL and provide additional header information that we will be sending our data in URL encoded form. This allows us to use $_POST on server side to read the data.

Call a JavaScript Function From PHP

As you know by now, PHP will run before JavaScript when you request a webpage from some server. We can also output anything we want to show on the webpage using echo. The same echo can be used to output JavaScript that will run in client's browser.

Here is some example code that will check an array of strings to find the index of last palindrome. This index is stored in a PHP variable which is then passed to JavaScript written inside the script tag using echo.

The above example shows how you can pass data from PHP to JavaScript by simply echoing it. Just make sure that the code you echo is valid JavaScript.

Conclusion

We all know that PHP runs on servers and JavaScript usually runs in browsers. Since they both execute at different times, you cannot just simply call functions from one language inside another and expect the code to work. However, there are ways to work around that issue which it is possible to exchange information between PHP and JavaScript.

To summaries, you can use AJAX when you want to call a PHP function from JavaScript or run PHP code on some data generated inside browsers. You can use echo in PHP to output JavaScript code which will run later in client's browser. If you have any questions about the article, please let me know in the comments.

Learn PHP With a Free Online Course

If you want to learn PHP, check out our free online course on PHP fundamentals!

 

In this course, you'll learn the fundamentals of PHP programming. You'll start with the basics, learning how PHP works and writing simple PHP loops and functions. Then you'll build up to coding classes for simple object-oriented programming (OOP). Along the way, you'll learn all the most important skills for writing apps for the web: you'll get a chance to practice responding to GET and POST requests, parsing JSON, authenticating users, and using a MySQL database.


1 comment:

  1. Glad to visit this blog, really helpful. Gathered lots of information and waiting to see more updates.
    PHP website development
    PHP Web Development Tools

    ReplyDelete