valterlorran Posted November 18, 2011 Report Share Posted November 18, 2011 Boa noite!!! então tenho o banco de dados chamado cadastro e a tabela chamada produto com os seguintes campos: id int(11) AUTO_INCREMENT 2 foto1 varchar(255) 3 foto2 varchar(255) 4 foto3 varchar(255) 5 foto4 varchar(255)ai vem o problema@$db = mysql_connect('localhost','root','123456');if(!$db){ echo "Erro"; }mysql_select_db('cadastro');$query = "insert into produto values('NULL','imagem1','imagem2','imagem3','imagem4','imagem5')";$result = mysql_query($query);if(!$result){ echo "erro"; }ta dando erro no $resultajuda ai pleaseee Quote Link to comment Share on other sites More sharing options...
0 mJi Posted November 18, 2011 Report Share Posted November 18, 2011 Sua query está incorreta. Pesquise sobre o INSERT INTO. Quote Link to comment Share on other sites More sharing options...
0 Rodrigo Kx Posted November 18, 2011 Report Share Posted November 18, 2011 Tenta:mysql_query ("INSERT INTO tabela (campo1, campo2, campo3) VALUES ('campo1', 'campo2', 'campo3')"); Quote Link to comment Share on other sites More sharing options...
0 valterlorran Posted November 18, 2011 Author Report Share Posted November 18, 2011 valeu gente funcionou aqui valeu mesmo!!! Quote Link to comment Share on other sites More sharing options...
0 Rodrigo Kx Posted November 18, 2011 Report Share Posted November 18, 2011 valeu gente funcionou aqui valeu mesmo!!!Se possível, poste a resposta para mais esclarecimentos. Quote Link to comment Share on other sites More sharing options...
Question
valterlorran
Boa noite!!!
então tenho o banco de dados chamado cadastro e a tabela chamada produto com os seguintes campos:
id int(11) AUTO_INCREMENT
2 foto1 varchar(255)
3 foto2 varchar(255)
4 foto3 varchar(255)
5 foto4 varchar(255)
ai vem o problema
@$db = mysql_connect('localhost','root','123456');
if(!$db){
echo "Erro";
}
mysql_select_db('cadastro');
$query = "insert into produto values
('NULL','imagem1','imagem2','imagem3','imagem4','imagem5')";
$result = mysql_query($query);
if(!$result){
echo "erro";
}
ta dando erro no $result
ajuda ai pleaseee
Link to comment
Share on other sites
4 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.