Posts by Motonio • 86 points
9 posts
-
1
votes3
answers17307
viewsA: PHP give refresh on a page
take a look http://php.net/manual/en/function.header.php in your case I would try something like header("Refresh:5");//recarrega em 5 segundos but you can’t figure out why you’re stopping?…
-
0
votes3
answers2921
viewsA: Show and hide content in Javascript (Menu)
Would that be? <script> function menu(id) { for(i=1;i<=4;i++) { var div = document.getElementById("conteudo"+i); if(i == id) { div.style.display = "block" } else { div.style.display =…
-
0
votes0
answers89
viewsQ: MINGW32 Composer: command not found - windows 8
Hello, I installed git in windows 8 and I have a problem with "cmd" Composer works and MINGW32 that came in git appears the message "Composer: command not found" someone knows how I fix this? NOTE:…
-
0
votes2
answers7960
viewsA: How to close an Activity(remove from Foreground)?
in this code the Activity will be closed as soon as you exit it or open another Activity Overwrite the Activity onPause() method protected void onPause() { // TODO Auto-generated method stub…
-
0
votes2
answers3727
viewsA: Retrieve content between custom tags using Regex
I don’t know if this is the way you want it, but it works: $html =…
-
1
votes1
answer71
viewsA: Passing String between classes
I’m not sure that’s what you’re looking for: In the class you call the Broadcastreceiver Intent intent ..... intent.putExtra("label", String); sendBroadcast(intent); At the Broadcastreceiver public…
-
2
votes1
answer390
viewsA: How to enter this information in the mysql database?
i have the impression that every entry in the webservice, you are picking up all the images. I would do a test like: take out the while enter a code manually (line 13) var_dump(or print_r) the $res…
-
0
votes2
answers2612
viewsA: Assign JSON values to simple variables
it seems that the part {"data":{"charges":{"data":{"charges" is duplicated outside that: <?php $obj =…
-
2
votes5
answers786
viewsA: Can I make a Javascript call through PHP?
<script language="javascript"> function sucesso(a,b){ alert(a+b); } </script> <?php $a = 2; $b = 3; echo "<script>"; echo…