我制作了一个有3行的表格,每行各有5栏,每栏有3个投入箱,如下栏所示。
我谨提交这一表格并提出一个表格。 表格的结构将根据表格数据确定。
例如:
- If I submit the form as below:
它将建立一个这样的表格:
(两行,第一行有两栏,第二行有一栏)
我认为,我需要这样写一个巨大的<条码>,如果是条码>的话,这种情形的代号是某人是否有写这一逻辑的想法? 仅作简单/细谈。
欢迎讨论。
我制作了一个有3行的表格,每行各有5栏,每栏有3个投入箱,如下栏所示。
我谨提交这一表格并提出一个表格。 表格的结构将根据表格数据确定。
例如:
它将建立一个这样的表格:
(两行,第一行有两栏,第二行有一栏)
我认为,我需要这样写一个巨大的<条码>,如果是条码>的话,这种情形的代号是某人是否有写这一逻辑的想法? 仅作简单/细谈。
欢迎讨论。
这只是算法,但是,在php中执行算法应当足够简单。
colspan
for each cell is maxCols / thisRowCols
我在此逻辑中看到的唯一告诫是,如果是maxCols / thisRowCols
的结果。 不是愤怒的,而是你们要么与自己一起生活,要么思考一下:
http://www.ohchr.org。
如果你赞同该办法,
if(thisRowCols != maxCols) {
echo("<td colspan="", maxCols / thisRowCols, ""> </td>");
} else {
echo("<td> </td>");
}
如果您有<代码><td>...,则载于html代码。
<td <?php if(thisRowCols != maxCols) { echo("colspan="", maxCols / thisRowCols, """);} ?> > </td>
I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...
<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...
I found this script online that creates a thumbnail out of a image but the thumbnail image is created with poor quality how can I improve the quality of the image. And is there a better way to create ...
如何确认来自正确来源的数字。
Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...
I wonder there is a way to post a message to a facebook business page with cURL? thanks
I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...
How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...