All Questions

1
answer

Query with Many-to-Many Relationship Entity Framework

I'm new to Entity Framework and Linq, so my question may be very simple, but it's breaking my head. I have two entities: public class Fornecedor { public int FornecedorId { get; set; } public string Nome { get; set; }...
asked on 23.12.2015 / 03:06
1
answer

Problem when using Select

I'm trying to use form select of this site here: link But when I put on my site the only thing that appears is this:    "Materialize Multiple Select" Does anyone know how to solve this? The code is this: <div c...
asked on 19.01.2016 / 13:29
2
answers

How to make a progress bar with steps?

How could I make a progress bar of steps using html5, css3 and js? An example to make clear what I need to do: I have a preference for zero, but is there a library ready for this?     
asked on 14.08.2015 / 17:45
1
answer

When clicking a button execute a php

Is it possible to merge php with jQuery ? For example, when I clicked on a button I would take the value of an input via jQuery and move on to php, an example of what I'd like to do: $('btn').on('click', function(){ <?php // ID de exem...
asked on 22.12.2015 / 02:43
2
answers

PHP Mysql avoid registering in the bank in capital letters

Good morning, I have a database, where users enter various news. I have already talked to all of them, not to put capital letters in the inclusion, because it leaves the project aesthetically ugly. Is there a way to issue an alert when...
asked on 17.12.2015 / 04:03
1
answer

Deserialize Json list

For when return is only 1 record I use the following: { "id": "27", "name": "Daft Punk", "link": "https://www.deezer.com/artist/27", "share": "http://www.deezer.com/artist/27?utm_source=deezer&utm_content=artist-27&utm_term=767...
asked on 12.01.2016 / 11:56
2
answers

Upload image Php Bootstrap File Input (Undefined offset)

I'm using the PlugIn Bootstrap File Input And it is returning me 'Notice: Undefined offset:' Codes <input id="file-upload" name="files[]" type="file" multiple> Form already has enctype="multipart/form-data"> Post:...
asked on 17.12.2015 / 05:13
1
answer

Ggplot of a Data.frame in separate charts

I have this data.frame: > df ind m X1 X2 1 2015-12-21 21 0.1431529 0.1426365 2 2015-12-21 42 0.1403679 0.1443714 3 2015-12-21 63 0.1467133 0.1466899 4 2015-12-21 84 0.1513388 0.148...
asked on 28.12.2015 / 22:50
2
answers

Capture text between two known characters

I need to get some text and find the words (or phrases) that are between two specific characters { and } , in this case. > I can do this by capturing the delimiters together, using the expression {(.*?)} , but I need th...
asked on 13.01.2016 / 17:57
2
answers

Display input value type date

I have the following input: <p>Data Saída:</p> <input type="date" maxlength="10" id="saida" name="saida" value="29/01/2016"/> It is being displayed as follows: But I want to display your value and not the dd /...
asked on 18.01.2016 / 18:44