hi, excuse me for the long time, i have not changed all my work to the new connector, and i have a question about the old one:
i use several connectors to update an entry, but instead of the UPDATE i use the REPLACE, so my doudt is here, isnt there any problem if i use this REPLACE twice, this is my AS code
update_btn.onPress=function(){
con0_con.params[0]=levelat;
con1_con.params[0]=levelat;
con0_con.params[1]=data1_ds.items;
con1_con.params[1]=data5_ds.items;
con0_con.trigger();
con1_con.trigger();
}
and this is the replace clause:
function setpays($mytable, $nr){
for($i=0; $i<sizeof($nr); $i++){
$result=mysql_query("replace into $mytable values ('".$nr[$i]['ID']."'......"')");
and again the code above
some times the data of one conn inserts and some times the other conn, what can it be?