Recent content by micben

  1. M

    Inserting image in grid view when the uploaded file is not an image

    Hello ! 1) the checkboxes on the grid view are only used to delete specific records, no? I have tried to used them to select and get the corresponding CSV file but this is no meant to result that way, I presume. 2) I try to display a default thumbnail, at least in the grid view, when the...
  2. M

    Inserting ID field value from master table into child table

    Thanks ! Do I always have to hide the fields that need to be filled automatically? It may resolve the two problems (linked field and date)... Benoît
  3. M

    Inserting ID field value from master table into child table

    Hi Eugenio, Thanks for trying to find out what's going on. 1) My master/details doesn't look exactly like yours. There is a separator at the end of the record from the main table and the remaining part of the page is a list of the corresponding records from the child table. When a try to...
  4. M

    Inserting ID field value from master table into child table

    Thanks ! 1) Default value of the linked field: Even when there is nothing in the default value parameter, it doesn't fill the linked field in the child table. 2) About the timestamp, I got 00/00/00 00:00:00 in the parent table but nothing at all in the timestamp field of the child table... The...
  5. M

    Inserting ID field value from master table into child table

    By the way, this is about inserting new records in the child table, linked to a specific record from the master table...
  6. M

    Inserting ID field value from master table into child table

    Hello Eugenio, When using your master/details feature, how do I copy automatically the ID field from the master into the linked field from the child table? It looks like a "SQL:" default value is not the solution because it takes only the 1st record of the main table and not the corresponding...
  7. M

    Inserting new records in a view

    Here are the statements... CREATE TABLE `Lieux` ( `IDlieu` int(11) NOT NULL AUTO_INCREMENT, `Region` char(1) DEFAULT NULL, `Statut` char(1) DEFAULT NULL, `Cote` decimal(4,2) DEFAULT NULL, `ValCompl` varchar(2) DEFAULT NULL, `Choix` varchar(45) DEFAULT NULL, `Enbref` text, `DesCartoF`...
  8. M

    Inserting new records in a view

    Hello Eugenio, How could we add new records in a view without receiving this message: The DBMS server said: SQLSTATE[HY000]: General error: 1471 The target table of the INSERT is not insertable-into In the "Create" permissions for this view, I only make the fields from the main table...
Top