Questions tagged as 'inserir'

1
answer

Add CSS when clicking a button that goes to another page

I need to add height in a div when I click a button, but it has a but this div is on another page and that's what I'm not able to do, I'll show you how I did it in the code below if anyone can help. p> CODE $('.close-reveal-modal').click(f...
asked by 23.05.2015 / 00:27
0
answers

Insert Sequential Number in a C #

I have this table called ArticleBarCode : IntheCodecolumnIneedtoenterasequentialnumber,ieIhavetoreadthemaximumnumberthatisthereandinsertthenextonethatisavailable!Ihavetousethefollowinglineofcodetoseewhattheavailablevalueis:SELECTISNULL(MAX...
asked by 27.04.2017 / 17:52
1
answer

Insert Multiple Entity Framework Items

I have the following method to add customer data public void Alterar(CLIENTE Cliente) { using (Entity.DominioEntity db = new Entity.DominioEntity()) { //Alterar/Adicionar Telefone foreach (var item in Cliente.TELEFONE)...
asked by 13.01.2016 / 17:51
1
answer

I can not insert user through the database / php

Good day, people. I am facing a somewhat embarrassing problem. I can do the user update through the panel that I built, but I can not add a new user to it. Follow the code. <? if (isset($_POST['submitted'])) { $matricula...
asked by 01.11.2015 / 13:47
0
answers

How to insert image in xsl worksheet with php? Is it possible that the database is saved only the path of the image in a folder on the server? [closed]

What is being passed to the worksheet is just the path of the image, but I need the image to be passed to the worksheet. The image that is in the server folder, and only the image path is saved on the server. <?php header( "Content-...
asked by 01.07.2015 / 20:36
1
answer

Insert data into the bank with codeigniter

I need to display and save data in my database but as I'll show below I'm using Joins to display, for example the name of an author using their primary key. For display is working, but when I use my method to insert data into the table it r...
asked by 23.01.2017 / 19:52
1
answer

Post repeated on sending the data to the controller, how do I solve it?

I'm trying to develop a php mvc system but I came across this problem in Create. The post is sending multiple repeated data I do not know why this is happening. Myviewcreateislikethis<formid="form1" action="<?php echo BASE_URL; ?>Pr...
asked by 01.05.2018 / 17:06
1
answer

Problem inserting in mysql table

Good afternoon, I have this code: <?php $servername = "xxxxxxxxxxx"; $username = "xxxxxxx"; $password = "xxxxxxxx"; $dbname = "xxxxxxx"; $conn = new mysqli($servername, $username, $password, $dbname); $conn->set_charset('utf8'); $name...
asked by 28.12.2017 / 17:15
1
answer

Insert by order in list in C

I have the following function: Nodo * insertOrder(Nodo *L,Nodo *nv){ //11,1,50,7,5 if(L==NULL){ return nv; } if(nv->id < L->id){ return (insertFirst(L, nv)); } int c=0; Nodo *aux2=L; Nodo *aux=NULL; while(L!=...
asked by 05.01.2019 / 18:41
0
answers

Create method to generate test entry?

Can we write code to make testing easier? For example: I have a list of people where each person can have a list of phones. I want to calculate the sum of the number of phones, or I want to check for duplicate phones in my list of people. It'...
asked by 13.12.2018 / 17:31