This field is on default page module, i changed nothing, except setting some layout not displayed. If see the source code can see the field actually populated but missing text betweeen label
have you tried
global $_GET;
echo $_GET['id'];
i think all those $this->input->get('id') are just functions masked the fundamental php function. so the old way of writing php should be working...as long as the function is called.
I just having same problem few days ago. Wat i did is not validate through controller but validate through model, which means i set validation rules in model, and by then i use built in sql functions like $model-〉set(), $model->save() etc. B…
i am not really sure of YAML routing thing, but from the document here https://developers.google.com/appengine/docs/php/gettingstarted/uploading
it says "Edit the app.yaml file, then change the value of the application: setting from helloworld to yo…
ok, i will create the page, but i dont think prevew_path will handle the ajax style, what other options i need to change to make this ajax pop up happen
after i set to empty array. like
$config['modules']['newsletters'] = array(
'module_name' => 'Newsletters',
'exportable' => true,
'table_actions'=>array('DELETE'),
'item_actions'=>array(),
);
the delete link failed to work, clickin…
yes, but i noticed that if i am doing that is like creating a new language with setting of extra files. What is the reason of use "english" instead of "en" in the first place in fuel cms?
ok, so what u mean is that i must create awards_model in this case, and actually i did not utilize the the build in model functions to save the data, i used raw sql, in this case, it is necessary to use model->save()?
i tried, but this is not working. the problem may be due to http://forum.getfuelcms.com/discussion/1865/saving-to-diff-table#Item_9
there are two table one is product and another is awards table.
as the form contains both product info and awards i…
actually need some more information on this
on_before_save() & on_after_save() // work on both create and update?
on_before_update()&on_after_update() //work on update only?
on_before_post()& on_after_post() // work on both create and u…
sorry but the thing is i need to parse those data first before saving to table B. ur solution is to find values on table B not getting values from form.
Maybe i should be specific.
I have two tables, one product table (id, name) another is price ta…
sorry, why on_before_update($values), the $values only contains those in Table A, not table B? how can i retrieve posted data for Table B in on_before_update