Home  >  Article  >  Backend Development  >  Update the content of dim sum today---php, update dim sum---php_PHP tutorial

Update the content of dim sum today---php, update dim sum---php_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 10:09:31905browse

Update the content of dim sum today---php, update dim sum---php

Post the code first

<?<span>php
    </span><span>function</span><span> table(){
        </span><span>echo</span> "<table align='center' border='1' width='600' cellspacing='0';>"<span>;
        </span><span>echo</span> "<caption><h1>这是表格的标题</h1></caption>"<span>;
        
        </span><span>for</span>(<span>$out</span>=0; <span>$out</span> < 10; <span>$out</span>++<span> ){
            </span><span>$bgcolor</span> = <span>$out</span>%2 == 0 ? "#ffffff" : "green"<span>;
            </span><span>$fontcolor</span> = <span>$out</span>%2 == 0 ? "#ffffff" : "#000000"<span>;
            </span><span>echo</span> "<tr bgcolor=".<span>$bgcolor</span>.">"<span>;
            
            </span><span>for</span>(<span>$in</span>=0;<span>$in</span><10;<span>$in</span>++<span>){
                </span><span>echo</span> "<td>".(<span>$out</span>*10+<span>$in</span>)."</td>"<span>;
            };
            </span><span>echo</span> "</tr>"<span>;
        };
        
        </span><span>echo</span> "</table>"<span>;
    }
    
    table();
</span>?>

This is a piece of PHP code that defines functions

tips:

1. Pay attention to the syntax format of PHP

2. Pay attention to the way of inserting Html code in PHP

3. When using the for loop, be careful to think clearly about the difference between the outer loop and the inner loop

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/945534.htmlTechArticleUpdate the content of dim sum today---php, update dim sum---php Post the code first? php function table( ){ echo "table align='center' border='1' width='600' cellspacing='0';" ; echo "captionh1This is...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn