Can not get input value from controller, Opencart:3

252 Views Asked by At

i am converting a .tpl module to opencart3(.twig), which is done. I have placed all other (model and controller) files in their location too. But i am getting a strange error, which is i can not get values of input and image fields. input is placed obviousely in .twig file and i am Using Journal 3 Theme.

Here is my twig file: theme/journal3/template/journal3/checkout/checkout.twig

<div class="tab-pane tab-content {% if (not previousreceiptlist) %}active{% endif %}" id="newreceipts">
    <div class="images form-group"></div>
    <div style="clear:both"></div>
     <div class="form-group required">
        <label class="col-sm-2 control-label">Prescription ID</label>
        <input type="text" class="form-control" name="reciept_name" value="1234" />
        <input type="text" class="form-control" name="test_name" placeholder="Test Name" value="090" />

    </div>
    <div class="form-group required" style="text-align:left;">
        <label class="col-sm-2 control-label"> Prescription</label>
        <button style="background-color: #F44336;" type="button" id="newreceiptsbutton" data-loading-text="Loading.." class="btn btn-default"><i class="fa fa-upload"></i> Prescription</button>

    </div>
</div>

But i can not access it from controller by --controller/journal3/checkout.php

$this->request->post['reciept_name'])

is there anything i am missing? Any suggestion what can i try...

Thankyou in advance

0

There are 0 best solutions below