Questions tagged [tabular]

Tabular indicates a display format that mimics a table entity.

A tabular format is something which mimics the appearance of a table entity.
All the data are shown in rows each of which is made of columns (or fields).

1367 questions
-2
votes
4 answers

Having problems using drop-down menu variables to create a table filled with these variables in PHP

I am a PHP beginner and I am stuck on an assignment for school. I have to create 6 different drop down menus (num1 , num2 , num3 , num4 , rows , columns) each with the numbers 1 through 10 in it. I then have make sure the form is submitted, and only…
-2
votes
1 answer

Create mysql table from a query run on another PHP page

I have a PHP page that processes some information when a button is pressed. One of this information is to process a query. I then want the results of the query to be put into a table in another page. I know how to put query results into a table, but…
M9A
  • 3,168
  • 14
  • 51
  • 79
-3
votes
1 answer

Fixed Table in Winforms C#

I'm looking for a fixed table, like HTML table to fill data in each row. I took a look at TableLayoutPanel, but this is not what I'm looking for because you can't fill the cells programmatically. Anyone have an idea how to handle this?
Nicolas
  • 129
  • 1
  • 2
  • 5
-3
votes
1 answer

How to create invoice / money reciept with html

I am working on an application, for a land developer company. The admin of my application has to make invoices, money receipts or bills. I need to make them look like http://www.vertex42.com/ExcelTemplates/excel-invoice-template.html with HTML+CSS.…
Faruk Omar
  • 1,173
  • 2
  • 14
  • 22
-3
votes
1 answer

What is the difference between a table from a RDBMS like SQL Server and a tabular file like Csv?

I have a theoretical question, if both a table and a .csv file store the data in tabular formats, what is the difference between them? Can I for example access a database table from outside the server as if it were a file? In what format are the…
-3
votes
1 answer

How can I create this table in Latex?

How can I create this table in Latex:
-3
votes
1 answer

How to display the result in a table using PHP

I have PHP code that reads from text files and displays the result where the user enters a word to search for and the system reads the files and displays the result with specified the line number and the file name. I want to display these results in…
Rany Fahed
  • 39
  • 3
  • 11
-3
votes
1 answer

How do I convert spaced columns to tabs?

This question is not a duplicate as someone had suggested. Mods, pay attention I'm running a for loop on multiple files that contain information like below 1 Leer Normal [status] — 100 1 Wrap Normal …
knuxyl
  • 129
  • 3
  • 12
-3
votes
2 answers

How to display output in HTML table based on output to determine which column it belongs to Flask

My Flask would called an exe program. And when it runs, it would concatenate the output and return a string to html like this: File1.dll< br >Encryption Passed< br >Validation Passed< br >File2.dll< br >Encryption Passed< br >Validation Passed< br…
kerrysugu
  • 123
  • 1
  • 1
  • 9
-3
votes
1 answer

I want to create a Word macro for table formatting

I want to create a Word macro that can do the following task at a single click. Please help me. I have a large document that's a trouble for me. The task includes a table formatting such as table width 11 cm, left aligned, font TNR 10, border…
rairkz
  • 3
  • 1
  • 7
-3
votes
4 answers

How do I display the output of a "while loop" in a table?

I don't even have an idea of where to start for this. I need to display 100 numbers in a table and would like to use a while loop to do so. Is there a "shortcut" to doing this?
-3
votes
2 answers

Table with editable columns and pagination in a web page

I want to create a table with editable columns and pagination. I tried Jquery but I couldn't get the proper result. I don't find any proper package to do this. Please help me with any reference.
Gokila D
  • 1
  • 3
-3
votes
1 answer

Visualising factors

I've come across a problem that asks me to print a table to visualize all factors of each integer ranging from 1 to limit. Then it specifies that a given position i, starting from 1 in a row n, then a * indicates that i is a factor of n, and -…
-3
votes
1 answer

Transform a listing into a table

I would like create a table out of listing. This is the input: Cluster 0 Sequenz 1 Sequenz 2 Cluster 1 Sequenz 3 Cluster 2 Sequenz 4 sequenz 5 Sequenz 6 Sequenz 7 And i want the output to be in tabular format where column one starts with the…
-3
votes
2 answers

PHP echo results into a table

I am struggling to put the data that is pulled from my database into a table layout. This is the echo result: echo "

".$results['ID Number']."

".$results['id_number']."

"; echo "

".$results['Card…