Posts by saimita • 125 points
18 posts
-
0
votes2
answers198
viewsQ: Jquery removes all the least selected Divs and the ones from the other menu
This code removes all the least selected Ivs, but also the ones from the motherboard menu what I was trying to do was to make the bottom ones independent of the top ones. I’m sorry to show you the…
-
0
votes1
answer40
viewsQ: Web service for web/android
I have the following web service $app->get('/alunos', function(){ require_once('db/config.php'); foreach ($db->alunos() ->order("nome") as $row){ $data[]=$row; } echo json_encode($data,…
-
0
votes1
answer992
viewsQ: Filter and pagination
I developed a web page that uses paging and filter, both made in PHP. What makes after using the filter, and select for example page 2, the information will be lost because it will reload all the…
-
0
votes1
answer1016
viewsQ: Input type file with pre-selected image
I have the path of an image in the database ex: admin/conteudo_admin/imagem_noticia/athletes.jpg I have this input type="file" and intended that this image was selected <input type="file"…
-
1
votes1
answer83
viewsQ: Attribute required in input text javascript
I intend to put the required attribute in this javascript input // Celula 4 -Local // Cria um <td> var locall = row.insertCell(4); // Cria o input var local = document.createElement('input');…
javascriptasked saimita 125 -
-1
votes3
answers47
viewsA: Problems with the positioning of an element
I resolved it this way <div style="background-color:grey;height:180px; position: relative;"> <P> <a href=""><font size='5px'>Titulo</font></a><br> <p…
-
3
votes3
answers47
viewsQ: Problems with the positioning of an element
I want to leave the date fixed in the right-hand corner, considering that the div is being created by a while and that the position of the date does not depend on the extent of the description.…
-
3
votes1
answer112
viewsQ: Change link with . htaccess
I have the following link http://127.0.0.1/site/noticia/12(cod_da_noticia) I wonder how I can leave the link like this http://127.0.0.1/site/noticia/12(cod_da_noticia)/queria colocar o titulo aqui…
-
1
votes0
answers446
viewsQ: Javascript input select option with data-select
I have the following javascript code and creates add the data-select attribute Something like this but create select in javascript http://jsfiddle.net/dbg0a4zy/ As in this option in php but in…
javascriptasked saimita 125 -
0
votes3
answers2016
viewsA: Mysql Ireport DATE_FORMAT months in English
Set the locale, you may need to install the en-BR version setlocale(LC_TIME,"portuguese"); DATE('%m/%y')
-
0
votes1
answer45
viewsA: Format right with header but not with include
I solved the problem by placing the content inside an iframe.
-
-2
votes1
answer45
viewsQ: Format right with header but not with include
Header header( 'Location:conteudo/agenda.php'); By clicking on the 14th With include include 'conteudo/agenda.php'; Nothing happens when you click I intended to do with include…
-
0
votes3
answers2210
viewsA: How to display the value of a variable in a modal bootstrap with PHP?
Send <div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel"> <div class="modal-dialog" role="document"> <div class="modal-content"> <div…
-
1
votes1
answer55
viewsA: Delete record from database
I searched the phpMyAdmin manual and found the solution: DELETE ata, convocatoria FROM ata INNER JOIN convocatoria WHERE convocatoria.nome_entidade='sdasd' AND…
-
-1
votes1
answer55
viewsQ: Delete record from database
I’m trying to run the following line: $sqld = "delete FROM ata where convocatoria.nome_entidade='$ent' and convocatoria.cod_convocatoria=ata.cod_convocatoria"; mysql_query($sqld); I tried direct on…
-
2
votes3
answers3498
viewsQ: I wish I had more than one bootstrap modal on the same page
<div class="container"> <img src="../imagens/editar_3.png" style="cursor:hand" title="Editar Info" data-toggle="modal" data-target="#myModal"> <div class="modal fade" id="myModal"…
-
0
votes0
answers35
viewsQ: Problem with menu
When passing with the cursor over this one it turns blue and wanted it to stay blue while I was with the cursor over the submenu code: menu { padding-left: 0; display: inline-block; padding: 5;…
-
0
votes1
answer65
viewsQ: Problem with menu formatting
I have the following menu: And when passing over a session a vertical submenu should appear underneath (information, defenics and finish). The problem is it’s badly formatted. The submenu are…