Jump to content

problem insert values into table using tokenizer..


chennaibala

Recommended Posts

hi frds...

in my hiden textbox.i have following values...

robert|true|true|false|arun|true|false|true|anu|tr ue|true|false|

 

i want to splits in to token and insert in mysql table in following manner

 

namefield writefiled readfield speakfield

robert true true false

arun true false true

anu true true false

 

thanks in advance...

robert|true|true|false|arun|true|false|true|anu|true|true|false|

 

I will suggest a small change first you change the delimiter to identify which is new record i.e

 

$str="robert|true|true|false#arun|true|false|true#anu|true|true|false|";

 

now

$dataArr=explode("#",$str);

 

$tokenitemArr=explode("|",$dataArr[0]);  //you can loop over $dataArr

print_r($tokenitemArr)

 

for you query and insert it.

 

 

  • 2 weeks later...

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.