Posts by Márcio1994 • 29 points
6 posts
-
-1
votes2
answers112
viewsQ: Indentation in html paragraph
Does anyone know how to make a indentation in the first lines of each paragraph of a text typed through a textarea? Using php’s nl2br function I can even save and display line-breaking text, but I…
-
1
votes2
answers41
viewsQ: Do not display variable value in the Laravel view
@foreach ($respostas as $resposta) @if($reclamacao->id == $resposta->reclamacao_id) <td>{{$resposta->resposta}}</td> {{$i++}} @endif @endforeach When I run this code snippet,…
-
0
votes1
answer31
viewsQ: Error while displaying message
public void iniciar() { Thread thread = new Thread(new Runnable() { @Override public void run() { Socket socket = null; DataOutputStream dataOutputStream = null; DataInputStream dataInputStream =…
androidasked Márcio1994 29 -
0
votes1
answer53
viewsQ: Create Android Studio Unique Field
I’m a beginner in android development and I’m trying to create a table in sqlite where the value of email will be unique. Only the app is allowing you to register equal emails. @Override public void…
-
0
votes1
answer1050
viewsQ: Compare Android Studio Strings
I started a few days learning android development, I’m trying to create a simple login system just for testing. Only when I create an event for the login button the comparison of the Edittext string…
-
2
votes1
answer395
viewsQ: Merge a stack with a list
struct noPilha{ float peso; int idMala; char cor[20]; struct pessoa donoMala; struct noPilha* prox; }; typedef struct noPilha Elem; struct noLista{ struct noPilha mala; struct noLista *ant; struct…
casked Márcio1994 29