Posts by Bia • 2,016 points
60 posts
-
3
votes1
answer33
viewsQ: Optimize the information page
I have a page that receives monthly newsletters, to display the month desired by the user do the following: <a href="?mes=ago2015" class="list-group-item <?=($mes=='ago2015')?'active':''?>"…
-
0
votes2
answers541
viewsA: Can I use Get or Post to read an Array?
On the form: <form method='GET'> <?php for($i=1;i<count($array)+1;i++){?> <input type="hidden" name="tamanho" value="<?=count($array)?>" /> <input type="hidden"…
-
3
votes2
answers280
viewsQ: Assemble date/time from month informed by user
I have the month entered by the user. ex: $mes = 11; Now I want to pick up this month and return the current (day/year/hour) + the month reported: 2015-11-08 14:44:00…
-
4
votes1
answer1111
viewsQ: Get url with Javascript without GET
I’m getting my url like this: var url = window.location.href; I have the following return: http://localhost/financial/pages/releases.php? local=Iguacu. But I don’t want the GET part, I wanted to get…
javascriptasked Bia 2,016 -
1
votes3
answers325
viewsA: Data types in SQL Server 2012 and HTML forms with PHP: date and monetary values
Using HTML5, but no IE support: <input type="tel" required="required" maxlength="15" name="valor" pattern="([0-9]{1,3}\.)?[0-9]{1,3},[0-9]{2}$" />
-
2
votes5
answers1793
views -
0
votes2
answers1898
views -
6
votes1
answer552
viewsQ: Take autocomplete return and put in different inputs
I have the following script <script type="text/javascript"> $().ready(function() { $("#course").autocomplete("teste1.php", { width: 260, matchContains: true, selectFirst: false }); });…
-
4
votes3
answers504
viewsQ: Disable input text by clicking another input text
Good Afternoon, I have both inputs below: <input type="text" id="txtEntrada" name="entrada" onkeyup="somenteNumeros(this);" > <input type="text" id="txtSaida" name="saida"…
-
3
votes1
answer1429
views