Jump to content

Recommended Posts

I have a MySQL database setup, now it's time for the table (gridview) design in php. Here's the problem i'm having. I have about 22 colms, but from colm 10 to 16 I want to place in one colm from 1 up to 6 rows. 10 through 16 are allegation. Can someone make a simple php table so that I can learn from the source code. The only problem I have is understanding how to get (if) only 1 allegation is inputed into the database, compare to if 2 or 3 or 4 or 5 or 6 allegation will fit into only colm. Here are my headers

 

Officer

Date

LastName

FirstName

SID#

InstantOffense

DischargeDate

ArrestDate

Booking#

Allegation1, Allegation2, Allegation3, Allegation4, Allegation5, Allegation6

Type

CourtDate

InterviewDate

HearingDate

HearingType

BoardDate

BoardDecesion

 

As you can tell there are 6 type of allegation, there might and might now be up to 6 allegation, but how would i do a php table like this? I do have a simple HTML table at http://tdcj.homeip.net if you would like to view what i'm talking about...

Link to comment
https://forums.phpfreaks.com/topic/185842-create-php-table-grid-help-please/
Share on other sites

well, when u using mysql query, u can do string concatenation

SELECT

Officer,

Date,

LastName,

FirstName,

SID,

InstantOffense,

DischargeDate,

ArrestDate,

Booking,

concat(Allegation1, Allegation2, Allegation3, Allegation4, Allegation5, Allegation6) as Allegation,

Type,

CourtDate,

InterviewDate,

HearingDate,

HearingType,

BoardDate,

BoardDecesion FROM table1

 

NOTE, u can put delimiters, in concat

like concat (str1, '|', str2, '|'...........)

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.