I want to use PHP to communicate with a java using shared database to communicate, please help me with sample code or logic.

Thank you.

EDIT:

I appreciate your suggestions, Yes I will be using both php and java to connect to thesame database.

The issue I'm faced with is that I want to know, do I have to create generic command that will be used for the communication? I'm trying to avoid dirty codes and ensure good programming techniques.

link|improve this question
Are you saying you want to use the same database with a php program and a java program? – k to the z Apr 1 '11 at 18:13
If youre using the db essentially as a message transport layer then there isnt much of a sampel we can give you... you jsut need to access the database in each application and do whatever you need to do with the data. If you're having a specific problem edit the question with details about that problem. – prodigitalson Apr 1 '11 at 18:19
Or if you're really just looking for a message queue, you could just use a message queueing system like activemq. – whoughton Apr 1 '11 at 18:21
feedback

closed as not a real question by mario, Frank Farmer, Robert Harvey Apr 1 '11 at 20:49

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

2 Answers

For sure. Take a look this, will help you:

http://php-java-bridge.sourceforge.net/pjb/

link|improve this answer
feedback

Facebook developed Thrift for doing exactly what you are looking for.

Hope this helps Daniel

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.