Posts by Josenildo Tiago • 29 points
5 posts
-
0
votes4
answers1970
viewsA: How to abbreviate words in PHP?
In the case of people names, for example: Fulando de Tal, abbreviated by Fulando T., using a simple PHP script like this one below: $name = "Fulano de Tal"; $array =…
-
1
votes1
answer234
viewsA: How to change the color of the $ symbol of the PHP variable in a theme installed in VS CODE
Searching the package.json of other themes, I discovered, follow the code below. "editor.tokenColorCustomizations": { "textMateRules": [ { "name": "Variaveis", "scope":…
-
0
votes1
answer234
viewsQ: How to change the color of the $ symbol of the PHP variable in a theme installed in VS CODE
someone knows how to change the color of that PHP variable symbol, the dollar sign ($). I’ve searched and found nothing about it, nor in the documentation.
-
0
votes2
answers3235
viewsA: How to call a form and hide the previous one in C#?
private void BtnLogin_Click(object sender, EventArgs e) { this.Hide(); frmTelaPrincipal novo = new frmTelaPrincipal(); novo.Show(); }…
c#answered Josenildo Tiago 29 -
1
votes2
answers343
viewsQ: Select any div from a foreach
Can someone help me? I have this problem when selecting the text inside the div, just select the first foreach text, wanted to select what I click and not only the first <?php foreach($dado as…