How can you access a COM object from a PHP page?
Answer / vijaya
By utilizing the com_load and the dotnet_load respectively
you can incorporate COM objects and .NET libraries into your
PHP code, thus anytime you see "library code" in a question,
make sure you remember these two functions.
Is This Answer Correct ? | 0 Yes | 1 No |
Which function gives us the number of affected entries by a query?
How stop the execution of a php scrip?
<?php include ("db.php"); $result = mysql_query("SELECT ques_id FROM questionbank order by ques_id limit 5 "); while($obj=mysql_fetch_array($result)) { $ad1[$obj['ques_id']]++;//Used an array and inserted the database query results into it. } $rand_keys=array_rand($ad1,1); //Did a random array function echo "First random id = ".$ad1[$rand_keys[0]]; echo "<br>Second random id = ".$ad1[$rand_keys[1]]; ?> <!--Its not working. Have any solution for this. -->
How to block direct directory access in PHP?
How to write php function in html onclick?
What are psrs? Choose 1 and briefly describe it?
how can i get USA time using php...
Which is the best institute in Chennai to learn PHP? Please help.
What is difference between readonly and constant?
What do the initials of php stand for?
What is the difference between client-side and server-side programming?
Is php a programming language?