Symbianize Forum

Most of our features and services are available only to members, so we encourage you to login or register a new account. Registration is free, fast and simple. You only need to provide a valid email. Being a member you'll gain access to all member forums and features, post a message to ask question or provide answer, and share or find resources related to mobile phones, tablets, computers, game consoles, and multimedia.

All that and more, so what are you waiting for, click the register button and join us now! Ito ang website na ginawa ng pinoy para sa pinoy!

Mysql query

lambutan

Amateur
Advanced Member
Messages
113
Reaction score
0
Points
26
guys patulong nmn kung paano Mag insert ng mutlyple data sa single query lng

eto po ung table na iinsert ko
View attachment 338850
 

Attachments

  • data.png
    data.png
    111.2 KB · Views: 40
Pede paki explain ng ayos? Ang vague kasi ng explanation mo.
 
Subukan mong gumamit ng loop
for($i=0;$i<count($data);$i++)
{
insert into table (column) values ($data)
}
sample lang yan wag gayahin concept lang kunin.
 
kung pano po mag insert ng sa table na nakikita nyo gamit ang single query
 
ganito ba ang need mo ts

INSERT INTO tableName
(column1,column2,column3,column4)
VALUES
('value1' , 'value2', 'value3','value4'),
('value1' , 'value2', 'value3','value4'),
('value1' , 'value2', 'value3','value4');
 
thanks sir try ko kung mag wwork
 
Back
Top Bottom