Posts by Diego Augusto • 28 points
4 posts
-
0
votes1
answer27
viewsA: The icon is not working
You need to add the Font Awesome css tag. Just put the following code. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"> Or else you…
-
0
votes1
answer125
viewsA: I cannot find Login error
In the command below you have to put a Return in place of echo. Being as follows: if($rsLogin->num_rows > 0){ $tblLogin= mysqli_fetch_array($rsLogin); $tmpUsuario=new UsuariosVO();…
-
0
votes2
answers2956
viewsA: Error inserting Data into Mysql
Just remove the t_id from sql. In your database this field is set to auto_increment? If you are just remove it. A sql would look like this: INSERT INTO `bancoTeste`.`TabelaTeste` (`t_label`,…
-
1
votes1
answer111
viewsQ: Many Exclusion for Many Entity Framework
I’m having a big problem with a many to many deletion in Entity Framework 6. Below follows my three classes. Budget class. public class Orcamento { public int Id { get; set; } public int ClienteId {…