Posts by Dnight • 51 points
4 posts
-
4
votes1
answer370
viewsQ: How to display an html page in a Jtextpane?
People I’m trying to display/integrate a php page into a JtextPane, works but I have no control of HTML, it just displays the text that the page generates and I would like to display with HTML,…
-
1
votes2
answers932
viewsQ: How to focus on a specific browser tab from a php check
I would like that from a set time if the user has selected another tab, or is seeing something else in the browser (Email), the system page is selected as if it were changed tab, and the user has a…
-
0
votes3
answers217
viewsA: Separate identifier information into variables (PHP)
Guys with your help $parser = explode(" ", $atualizacao); /**** CH ******************/ foreach ($parser as $data) { if (strpos($data, "ch#") !== false) { $dataId = explode("ch#", $data); $ids[] =…
-
0
votes3
answers217
viewsQ: Separate identifier information into variables (PHP)
Ex: text text id:123456 text text id:124214 text text I need to separate id values into variables as I can do this in PHP?