All Questions

2
answers

Create HTML table using PHP

Can I create a table to separate this code? This is the only way to align the data I have if($exibe['Nome1'] != NULL) { echo '<p><b>Nome: </b>'.$exibe["Nome1"].' &nbsp;&nbsp;<b> Função : </b>'.$exibe["...
asked on 10.06.2014 / 11:10
3
answers

Crash after reading value with scanf

First, I'm "noob" in programming. I started college today, and the subject was already rolling (third call has its consequences = P). The code is simple, the third one I created, however, after compiling and writing a value, CMD stops working....
asked on 24.02.2014 / 23:14
2
answers

iterate values in $ .each nested Jquery

I'm getting a full table from my server side, I'm looking for td with information that I want and saved this entire tr in a variable like below: var rowVoo; $(table).find("tr td").each(function () { if ($.trim($(this).text...
asked on 03.07.2014 / 23:14
2
answers

Pulling PHP information via AJAX with jQuery in json format

I have a jQuery code that creates a calendar that lets you leave reminders on the date. The code is as follows: var calendar = $('#calendar').fullCalendar({ slotDuration: '00:15:00', /* If we want to split day time each 15minutes */...
asked on 23.06.2014 / 02:59
2
answers

Percentage columns not aligned

I'm using 3 columns (sections) each with 33.33% width and margin-left and right from 10px to 3. Only the last column is falling down. Because they are in% width, should not they fit the size of my container instead of falling? <main>...
asked on 10.06.2014 / 19:15
2
answers

Why does the Chrome console return 8 when I type 010?

Would you know to tell me why when I type in the console 010 and press enter it returns me 8 ? and if I type 0100 it returns me 64 .     
asked on 26.03.2014 / 21:02
3
answers

Create and read DLL in php?

Would it be possible to create and open windows DLL libraries in php? I want to organize my php classes in dll so that they can be used in both php and C #, if there is an alternative, it also works.     
asked on 29.04.2014 / 21:56
2
answers

How do I make Django "see" CSS?

I'm writing a Django and Python application, and I'm having a problem     in the templates part, running locally Django found the template and     I was able to visualize it through localhost:8080/home , it happens that the     style sheet...
asked on 07.05.2014 / 18:07
3
answers

Find string in more than one SQL table

I would like to fetch a given string using LIKE in more than 1 table. Here is an example of how I did it, which will probably spend a lot of time or not fetch all tables: string SQL1 = @"SELECT * FROM TB_1 WHERE NOME LIKE '%' +...
asked on 06.03.2014 / 19:37
2
answers

How to search for images in Google with JavaScript?

I'm developing a webpage where it was in the project's interest to display some Google images, where they would be displayed from some significant name. I was reading something related and saw that Google Image Search API has been discont...
asked on 18.05.2014 / 00:10