Posts by Rodrigo Gaete • 88 points
3 posts
-
3
votes2
answers466
viewsA: Is there a model to document the "Ubiquitous language" in the DDD?
In the area of health (a beautiful example of complex systems) we use a "Ubiquitous language" to describe models through the language ADL (Archetype Description Language). This language is defined…
-
2
votes2
answers444
viewsQ: How to create a function to clear the group of a radiobutton?
I am working on a typing system of a paper form, where I have some options of radiobutton, for example: <fieldset> <legend> Disponibilidade de energia elétrica? </legend> <label…
-
1
votes2
answers11175
viewsA: How to open a screen with a pre-filled form with PHP and HTML?
The estrtura to pre-fill information from an HTML form is really very simple, even more using PHP. <?php $nome_html = htmlspecialchars( $nome ); $email_html = htmlspecialchars( $email ); ?>…