Skip to content
Advertisement

Running PHP in Node and parsing the data back to index.html

I am running PHP in node (Why not experimenting I know its crazy) to retrieve some data using ODBC connection.

This is the node server

Webserver.js

JavaScript

execphp.js

JavaScript

php data

JavaScript

My questiong would be how do i get the data from my localhost:3000/data.php to my index.html

What would be the best approach to solve this issue?

Advertisement

Answer

In this case, I think the best approach would be to make an AJAX call from your index.html to query the 'data-php' route and then display the data.

If I understand correctly, here’s a simpler example of what you are trying to do:

server.js

JavaScript

execphp.js

JavaScript

index.html

JavaScript

Otherwise, you could also consider to use a template engine like handlebars to render your html.

And keep in mind that it is much more a workaround, as stated in the comments, than a clean and robust solution. It would be better to find a ODBC driver that works on Nodejs.

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement