Total Questions:-137 Goto Page:
1
2 3 4 5 6 7 8 9 10 11 12 13 14
R4R ---> Articles--> PHP -->PHP Articles List
Page 1
Articles:
Which of the following is not a session function?
a.sssion_decode
b.session_destroy
c.session_id
d.session_pw
Post Your View
Views
By:Rajesh Kumar
Date:
Articles:
Which syntax is nit PHP?
a.<? php ?>
b. <% %>
c. <? ?>
d. <script language="php"> </script>
Post Your View
Viewsb.<% %>
c. <? ?>
d. <script language="php"> </script>
For More
By:Vivek
Date:
Articles:
1. mail($param2, $param2, $param3, $param4), the $param2 contains:
a.The message
b.The recipient
c.The header
d.The subject
Post Your View
Views
By:Rajesh Kumar
Date:
Articles:
12. What is output of following:
$r4r=15;
function adit() {
GLOBAL $r4r;
$r4r++ ;
echo "r4r is $r4r";
}
addit ();
a. r4r is 15
b. r4r is 16
c. r4r is 1
d. r4r is $ r4r
Post Your View
Views
By:Rajesh Kumar
Date:
Viewsfatal error as there is no function with name addit.
here we define function name as adit()
For More
By:vineet gupta
Date:vineet@webnivaran.com
ViewsCall to undefined function
defined function is adit()
called function is addit()
:)
For More
By:Vishal Sahu
Date:vishusahu@gmail.com
Articles:
8. Which of the following delimiter is PHP style?
a. <?php ?>
b. <% %>
c. <? ?>
d. <script language="php"> </script>
Post Your View
Views
By:Ajit Kumar
Date:
Articles:
Can i convert PHP code into JAVA code?if yes,how?
Post Your View
ViewsYes,We can convert PHP code into JAVA code.Like that:
echo "<script>JAVA code</script>"
We can write PHP tags inside the javaScript tag.
<script
For More
By:Vivek
Date:
Articles:
Can I develop our own PHP extension?if yes,how?
Post Your View
ViewsYes,we can develop a PHP extension like that,
Example:
<?
echo 'PHP';
?>
To save this file as .php extention
For More
By:Vivek
Date:
Articles:
Can we submit a form without submit button?
Post Your View
ViewsUsing JavaScript we can submit a form without submit button.
Example:
document.FORM_NAME.action="Welcome.php";
document.FORM_NAME.submit();//this i
For More
By:Vivek
Date:
Articles:
Casting syntax introduced in PHP 6 is
a. (array)
b. (int64)
c. (real) or (double) or (float)
d. (object)
Post Your View
Views
By:Rajesh Kumar
Date:
Articles:
Choose correct syntax to print "R4R Welcomes You!" using PHP in HTML.
a. <html><body><?php echo "R4R Welcomes You!";?></body></html>
b. <html><body><?php write "R4R Welcomes You!";?></body></html>
c. <html><body><?php display "R4R Welcomes You!";?></body></html>
Post Your View
Viewsa. <html><body><?php echo "R4R Welcomes You!";?></body></html>
For More
By:Vivek
Date:
Viewsb(It is Wrong....(:- )
For More
By:meena
Date:
Go:
1
2 3 4 5 6 7 8 9 10 11 12 13 14