Skip to content

Instantly share code, notes, and snippets.

@fayqLs
Last active April 20, 2024 00:31
Show Gist options
  • Save fayqLs/749af740fc1e99fcdc263d3a88d23c86 to your computer and use it in GitHub Desktop.
Save fayqLs/749af740fc1e99fcdc263d3a88d23c86 to your computer and use it in GitHub Desktop.
ENVIAR DADOS PARA O CAMPO DO FORMULÁRIO
<?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