Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

working with file

Status
Not open for further replies.

hisham

IS-IT--Management
Nov 6, 2000
194
0
0
I have the folloing html file:

-------------------------
1:1 first record<br>
<br>
1:2 another one<br>
<br>
1:3 this one<br>
<br>
1:4 last record<br>
<br>

-------------------------

I need to insert the data of this file in a mysql DB table as:

insert into my_table ( foo, bar, mytext ) values (1,1,first record );
insert into my_table ( foo, bar, mytext ) values (1,2,another one );
insert into my_table ( foo, bar, mytext ) values (1,3,this one );
insert into my_table ( foo, bar, mytext ) values (1,4,last record );

Thanks in advance .
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top