Posts by Kleyner • 33 points
3 posts
-
-1
votes1
answer148
viewsQ: How to pick up text from a Span with Class [VB.NET]
<span class="odometer-value">0</span> That is the code. I need to take the "0" result and put it on a label. But sometimes you can have ex: 10 (2 numbers) and the code will be: <span…
-
0
votes1
answer191
viewsQ: How do PHP read Mysql from the bottom up?
My code is this: //Receber o número da página $pagina_atual = filter_input(INPUT_GET,'pagina', FILTER_SANITIZE_NUMBER_INT); $pagina = (!empty($pagina_atual)) ? $pagina_atual : 1; //Setar a…
-
3
votes1
answer126
viewsQ: How do I change the order of entering the Mysql database?
I want you to insert something into my Mysql (Phpmyadmin) and place it on top of the last post. Example: Yesterday I inserted Nome: Pedro | Idade: 20 Anos and he was at the top by being the first to…