PHP에서 웹페이지 색상을 설정하는 방법: 먼저 [changecolor.php] 및 [bgcolor.html]이라는 두 개의 파일을 만든 다음 시작한 후 브라우저에서 직접 액세스합니다. 색상을 변경하려면 변경 버튼을 클릭하세요.
PHP에서 웹페이지 색상을 설정하는 방법:
먼저 두 개의 새 파일을 만듭니다.
One: changecolor.php
changecolor.php
代码:
<?php if(isset($_GET["cl"])){ $color = $_GET["cl"]; echo "<div style='text-align:center;width:100%'>".$color."</div>"; echo "<style>body{background-color:$color}</style>"; } ?>
一个:bgcolor.html
<!DOCTYPE HTML> <html> <head> <meta http-equiv="content-type" content="text/html" /> <meta name="author" content="jingyan.baidu.com" /> <title>背景颜色变更</title> </head> <body style="text-align:center;"> <form action="changecolor.php" method="get"> <select name="cl"> <option selected="true">Red</option> <option>Blue</option> <option>Pink</option> <option>Black</option> <option>Purple</option> </select> <input type="submit" value="chang"/> </form> </body> </html>One:
bgcolor.html
Code:rrreee
2. 편집기는 APMServ5.2.6을 사용합니다. 시작한 후 브라우저에서 직접 액세스합니다(그림 참조)선택 색상을 클릭하고 변경 버튼을 클릭하면 효과가 나타납니다
관련 학습 권장 사항:초보부터 마스터까지 PHP 프로그래밍🎜🎜🎜
위 내용은 PHP에서 웹 페이지 색상을 설정하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!