Link to home
Start Free TrialLog in
Avatar of team2005
team2005

asked on

How to update record mysql from PHP.....

Hi!

Have made a application in vb.net. This application is using a DLL file, that contains of functions
that update data in a MYSQL database.

How can i use this funtion from a web page (PHP) ?

Need help ASAP.

Tor
ASKER CERTIFIED SOLUTION
Avatar of TheMegaLoser
TheMegaLoser
Flag of Sweden image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of team2005
team2005

ASKER

Hi!

This DLL file i want to use, is made in vb6.0.
Can i use same example for this:
http://www.devarticles.com/c/a/PHP/Using-the-.NET-Assembly-in-PHP/ ????

And YES i am using windows.

And the function i am calling, is placed on my companys web-server.
So the client can use the DLL, but the DLL is NOT stored on clients server.

Tor

Yes, you should be able to use the same example. Just skip the part about creating the .net assembly. A vb6 dll is basically a com object so follow the same steps.

You need to find out the name of the com object in the dll and then follow the instructions from page 3.
Thanks...