I'm building an application that will receive data from several different ERPs every day.
But I have the following problem, the next day the ERP can send me the same data that did or did not change + some new data.
And I need to insert these...
I have a form with a field multiple select :
<form action="processa-chose.php" method="post">
<select id="selecionar" name="fornecedor[]"
data-placeholder="Fabricantes"
style="width:350px;"
multiple...
I was able to do the star rating system, but I wanted the vote to be displayed on the screen or saved in the star so that it would be filled according to the votes. Could someone help me, here is my code:
This is the page where the stars are:...
Is it possible to use PHP within a data-title field?
I have the following code:
<div id="grid" class="m-row shuffle--container shuffle--fluid">
<?
$result = $connection -> query("SELECT * FROM portfolio") or die($co...
I want to insert something into my MySQL (PhpMyAdmin) it inserts and above the last post. Example:
Yesterday I inserted Nome: Pedro | Idade: 20 Anos
and it was at the top because it was the first one to be inserted into the database...
I have encountered Views in SQL and also with stored procedures.
I would like to understand better, what is the difference between a view and a stored procedure and what are its purposes?
Would it be possible to provide a practical case for...
I'm learning PHP and for starters I'm doing a phone book project, with name, DDD, and phone.
However, before the new data is entered, how do I check if the same phone number is already registered?
I'm working on a system that needs to sort out multiple data (coupons) from one table and return it to the user, but I can not risk delivering the same coupon to the other user.
I thought about using GET_LOCK ( ) from MySQL to temporarily l...
I need to fix a table that was built in the wrong way, the field that would be to store the date was created as varchar .
With this structure I can not select a certain period, since varchar are sorted from left to right in...