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 language is php written in?
Explain the purpose of output buffering in php.
Explain some most commonly use string functions in php?
What is the purpose of the '.frm' file extension? What do thes file contain?
How can you send http header to the client in php?
How is csrf token generated?
How to create connection in php?
Which function would you use to replace a record in a database in php?
Why do we use session?
What is mysqli_fetch_array?
What is php's mysqli extension?
Is php 7.0 stable?
What is print_r?
how to track user logged out or not? when a user is idle?
What is url encoding and decoding in php?