Page 1 of 1
Is it possible to call ASPX page from a PHP web site?
Posted: Wed Oct 13, 2010 9:39 pm
by vxlnc
Hi Guys,
I am planning to develop a site in PHP on MYSQL Database with Linux OS. I need to call an aspx page from the PHP page irrespective of the Database that asp site is running on.
1. Is it possible to contact the asp site and update the data on their Database?
2. If yes, how could I do it?
Can you please HELP me?
Thanks in advance
V XLNC
Re: Is it possible to call ASPX page from a PHP web site?
Posted: Wed Oct 13, 2010 10:47 pm
by cusackd
Are you just looking to add and edit records that the asp site uses?
Re: Is it possible to call ASPX page from a PHP web site?
Posted: Thu Oct 14, 2010 12:35 am
by s.dot
1) If you own both sites, yes.
2) There are many ways.
Re: Is it possible to call ASPX page from a PHP web site?
Posted: Thu Oct 14, 2010 11:15 pm
by vxlnc
Thanks s.dot, You are the man.
Just to add few points to this, I need to integrate my
Code: Select all
site with back end system of the ASP Site that someone else created. With this i should be able
to get the results from ASP page and display on my Website and also i should be able to update the data on the ASP Database.
For point 1), ASP site is owned by one of our customers. So what needs to be done to make this integration work? does the ASP folks need to do anything on their end (or) Its just the PHP site owner that has to do any changes?
How big of a Project is this? Your help is very much appreciated.
V XLNC.
Re: Is it possible to call ASPX page from a PHP web site?
Posted: Fri Oct 15, 2010 12:58 am
by s.dot
The only thing that would need to be done is making the data portable and accessible by both ASP and PHP (XML comes to mind) and having scripts to deal with the data, intepret it, and insert it into the database.
The complexity and scale of the project depends on what actually needs to be done.. but making your data portable is the first step, then sending and receiving the data, then dealing with it.