Im trying to explode the value of my query to input field so im able to edit them: this what I've got so far ::
$temp = explode(',',$sizes);
if($temp){
$ctr_size='';
foreach($temp as $size){
echo "<input type='text' value". $size.">";
$ctr_size++;
}
}
please help..