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 convert strings to upper or lower cases?
What does the unset() function mean?
What is variable declaration?
What are the differences between GET and POST methods?
Which is better session or cookie?
What are the file upload settings in configuration file?
How does firefox manage cookies?
Can I write php code in html file?
What is str_replace()?
What are the characteristics of php?
How does api connect to database?
Tell me what are the encryption techniques in php?
What is the difference between single-quoted and double-quoted strings in php?
How do I debug php?
What is the difference between get & post ?