How to display information from a column in mysql. There is a test column in which there is similar content id|15||id2|20||id3|25 . How to display the id value separately, $id=15 $id2=20 ? Now I bring on DLE thus images
$sql = $db->query( "SELECT * from dle_post where id=1); $row = $db->get_row($sql); echo $row['xfields']; We get id|15||id2|20||id3|25 , I need to display separately the value of each id. Not an array