Answer Posted / muhammad adeel qureshy
<?php
$var1=rand(0,9);
$var2=rand(0,9);
$var3=rand(0,9);
$var4=rand(0,9);
$var5=rand(0,9);
$var6=rand(0,9);
$col='#'.$var1.$var2.$var3.$var4.$var5.$var6;
echo '<script type="text/javascript">alert("The color code
'.$col.' had been poped up by using javascript which is used
in PHP");</script>';
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html lang="en">
<head>
<title>Change Background Color of DIV</title>
<style type="text/css">
#bk{
width:300px;
height:300px;
background-color:<?php echo $col; ?>;
border:1px solid #000000;
}
</style>
</head>
<body>
<div id="bk">DIV Changing its background</div>
</body>
</html>
| Is This Answer Correct ? | 12 Yes | 10 No |
Post New Answer View All Answers
What is session cookies php?
Explain what does $_server means?
Define soundex()?
What is the difference server side and browser side validation?
What is a controller in programming?
what are the differences between php and perl
What is the meaning of xdebug?
How does php strcmp work?
How to create reusable code in php?
What is the use of php and mysql?
What does $_server means?
When are you supposed to use endif to end the conditional statement?
Tell me which function gives us the number of affected entries by a query?
What is full form of php? Who is the father or inventor of php?
What is php session start?