在php中制作加法和乘法表。

时间:2014-09-17 17:04:15

标签: php mysql postgresql

我需要帮助在php中创建表格。这是我现在的代码。我有正确的HTML代码,我只需要帮助我的PHP代码。

<html>
<head/>
<body>
<form method="POST" action="<?= $_SERVER['PHP_SELF'] ?>" >
<table border="1">
<tr><td>Number of Rows:</td><td><input type="text" name="rows" /></td></tr>
<tr><td>Number of Columns:</td><td><select name="columns">
<option value="1">1</option>
<option value="2">2</option>
<option value="4">4</option>
<option value="8">8</option>
<option value="16">16</option>

</select>
</td></tr>

操作:乘法
    加成                    

<?php
    if(isset($_POST["submit"])){

        //check to see if num of rows is numeric
    if ( isset($_POST["rows"]) && is_numeric($_POST["rows"])){
            //check to see if rows is a positive number
            if($_POST["rows"] > 0){
                    //if the multiplication button is checked do this
                    if(isset($_POST) && $_POST["operation"] == "multiplication"){
                            //start the table and post what type of table it is
                            echo 'This is a '. $_POST["rows"] . ' x ' . $_POST["columns"]    .'multiplication table';
                            echo "<table border=1";
                            echo'<tr>'; 
                    //post the first row
                    for($b = 0; $b <= $_POST["columns"];$b++){
                            echo '<th>'.$b.'</th>';}
                            echo '</tr>';
                    //nested for loops to finish the table
                    for($r = 1; $r <= $_POST["rows"]; $r++){

                            echo'<tr><th>'.$r.'</th>';

                            for($c = 1; $c <= $_POST["columns"]; $c++){
                                    echo '<td>' .$c*$r. '</td>';

1 个答案:

答案 0 :(得分:0)

您必须使用mysqli::query($query);之类的函数运行查询。此函数返回一些内容,然后您可以使用其他一些函数来获取/显示这些内容。但请记住首先连接到数据库并且那些东西......

我建议你先阅读一些关于mysqli的指南;)然后它会自我解释。