I want to know how to add a column so that it is a primary key and auto-increment, but that the value is higher, eg:
ID: 3509. and not just 1,2,3,4 ... etc.
I'm having trouble performing a price calculation for multiple products on the Front End.
I have array of products and I need to add them through a function.
Example:
produto[0] = {produto:'Camisa',preco:'45,90'};
produto[0] = {pr...
I recently updated my Macbook here and now all the buttons on my site are with the rounded border. I found it to be some CSS bug, but no, getting into my Windows computer is normal. Can anyone tell me what's going on?
A help with regular expressions in Delphi 10 please. I need to check the following in string :
Size ranging from a minimum of 6 characters to a maximum of 20 characters;
Type of characters: a-z or A-Z or 0-9 or _ (underline character...
I have the following code with a% text_type% and a file type. See:
<form action="#" method="post" enctype="multipart/form-data">
Name file:
<input type="text" name="name" id="name"><br/><br/>
<inpu...
I need to do a SQL query to count indications, I have the following querys :
SELECT 'FACEBOOK', COUNT(id) FROM 'clientes' where indicacao like '%face%'
SELECT 'Instagram', COUNT(id) FROM 'clientes' where indicacao like '%insta%'
SELECT 'go...
Good, can someone tell me what this this does?
public Tempo (){
this(0,0,0);
}
public Tempo (int h){
this(h,0,0);
}
public Tempo ( int h,int m){
this (h,m,0);
}
public Tempo (int h,int m , int s){
SetTime(h,m,s);
}
Does $_GET , or even $_POST , get ID values from input or name ?
<form action="#" method="get" name="meuForm">
<input id="nome" name="nome" type="text" value="Teste">
<input id="email" name="email" typ...