Number of Rows: Number of Colu-6ren">
gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-29 23:46:40 26 4
gpt4 key购买 nike

我需要在 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>';

最佳答案

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

我建议您首先阅读一些有关 mysqli 的指南;)然后它就很不言自明了。

关于php - 在php中制作加法表和乘法表。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25896379/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com