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
What is the function used to change the root directory in PHP?
Is null or empty c#?
List data types in PHP?
How can we set and destroy the cookie in php?
Tell me what is mean by an associative array?
Explain what does the function get_magic_quotes_gpc() means?
Is php session id unique?
Under what circumstance is it impossible to assign a default value to a parameter while declaring a function?
How do I escape in php?
Where session is stored?
How to increase the execution time of a PHP script?
When viewing an html page in a browser, the browser often keeps this page in its cache. What can be possible advantages/disadvantages of page caching? How can you prevent caching of a certain page (please give several alternate solutions)?
What is whitespace in html?
What are the php functions?
What are the steps involved to run php?