How can I use the COM components in php?
Answer Posted / pankajbisane
Use following code:
<?php
$objCom = new COM(“AddNumber.math”);
$result = $objCom ->AddTwoNum(2,2);
echo $result;
?>
Is This Answer Correct ? | 10 Yes | 2 No |
Post New Answer View All Answers
How to set a page as a home page in a php based site?
Explain difference between urlencode and urldecode?
What are the characteristics of php?
how to track user logged out or not? when a user is idle?
What are form input html tags?
What does isset() function?
Require_once(), require(), include(). What is difference between them?
Tell me what does the scope of variables means?
What is design pattern? Explain all including singleton pattern?
What is the use of nl2br() in php?
How to set a value in session? How to remove data from a session?
In how many ways we can retrieve the data in the result set of mysql using php?
What is nginx and what is it used for?
How to create an empty array in php?
Why constructor is not overridden?