How can I use the COM components in php?
Use following code:
<?php
$objCom = new COM(“AddNumber.math”);
$result = $objCom ->AddTwoNum(2,2);
echo $result;
?>
| Is This Answer Correct ? | 10 Yes | 2 No |
List data types in PHP?
What is the difference between using copy() and move() function in PHP file uploading?
how long a default session stay in php?
Explain me what is the w3c?
What is php and how do you use it?
How do I end a php session?
How are sessions maintained?
What is pdo classes?
What is happening in the following code $objA = new A(); // A is a class $objB = $objA;
How come the code works, but does not for two-dimensional array of mine?
What is the purpose of the '.frm' file extension? What do thes file contain?
What are the uses of explode() function?