-
-
Save fayqLs/749af740fc1e99fcdc263d3a88d23c86 to your computer and use it in GitHub Desktop.
ENVIAR DADOS PARA O CAMPO DO FORMULÁRIO
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$objeto = new stdClass(); | |
$objeto->nome = 'FABRICIO'; | |
$objeto->celular = '(83) 98655-6461'; | |
$objeto->idade = '34'; | |
TForm::sendData(self::$formName, $objeto); | |
# TForm::sendData('nome_do_form', (object)['nome_do_campo' => $object->id], false, false); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment