Page 1 of 1

List Page doe not come up after entering data

Posted: Wed May 29, 2019 1:48 pm
by YogiYang

Hello,

I have run into a very wired problem.

I have following data structure:
CREATE TABLE IF NOT EXISTS advt (
advt_id int(11) NOT NULL,
advt_samaj_id int(11) DEFAULT NULL,
advt_date date DEFAULT NULL,
advt_content text,
advt_image text
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

I can click on the Add button to add a new record. All things work fine but after I save a record the List pages comes up blank.

What must be the problem here?

TIA


Re: List Page doe not come up after entering data

Posted: Wed May 29, 2019 2:15 pm
by mobhar

Just check the data to your Database. Does it exist?


Re: List Page doe not come up after entering data

Posted: Thu May 30, 2019 11:53 am
by YogiYang

Hello,

Yes it does exist.

But I have found a way out!

I created a new table under a different name and now things are working properly.

TIA