Posts by Pedro Franco • 462 points
15 posts
-
0
votes0
answers132
viewsQ: How do I get my Ionic app to update its external json to new content?
Well I have a site that uses the JSON API of Wordpress and created the site handmade consuming data wordpress JSON. I created an app for the site using IONIC’s "Whitelist" to get JSON data from…
-
1
votes3
answers193
viewsA: How do I open a DIV that occupies the entire internal space of the browser?
You can do it like this: <div id="teste"></div> In javascript: var windowWidth = window.innerWidth; //pega a largura da tela var windowHeight = window.innerHeight; // pega a altura da…
javascriptanswered Pedro Franco 462 -
0
votes1
answer454
viewsQ: How to format Json code in HTML?
Good afternoon, you guys. I need some help. I’m using the API: JSON Wordpress API and it releases . content that returns the post’s HTML code. How to take this json that contains HTML code and…
-
14
votes7
answers10590
viewsA: How do I know if today’s date is Saturday or Sunday (weekend) in PHP?
if (date('w') == 0 or date('w') == 6) { echo "É final de semana "; }
-
3
votes4
answers2216
viewsA: Is there a problem using Java for commercial automation application in dektop? Or is it better to do it for the web using PHP?
There are already several opinions and good answers about your situation. But one suggestion I can give you is that if you are already and intend to continue developing in JAVA, I recommend using…
-
2
votes4
answers1174
viewsA: How do I share a Java project with a team?
I think git is one of the easiest ways, whether you use Eclipse or Netbeans both have SVN or Git plugins. And it’s pretty easy to use. A good video-lesson link on Youtube. Basic Git Tutorial I hope…
-
2
votes3
answers563
viewsA: What does <!-- //--> mean in html / javascript?
Used for Javascript, it is only a consensus of orientation of the end of the function. As for example comments to mark the beginning and end of a certain code delimitation, I myself use this to…
-
1
votes3
answers16590
viewsA: Align side-by-side fields in a form
I did something like this, which is very close to what you want. Look if it helps you. #formulario { background-color: #111; width: 60%; margin-left: 20%; padding: 45px 15px; height: auto; } .campo…
-
1
votes2
answers295
viewsA: Problem with Bootstrap Resizing
I would do so <div class="row container-fluid text-center general"> <div class="col-xs-12 col-sm-5 col-sm-offset-1 banner-wine"> <img src="images/taca.png" alt="novidades de vinhos…
-
1
votes1
answer34
viewsA: Query
Good morning my dear, you really own the need to work with a database using Wordpress? Because Wordpress has numerous plugins to meet these simple needs, so you do not need manual interventions. To…
wordpressanswered Pedro Franco 462 -
1
votes1
answer75
viewsA: Problems with grid in Bootstrap version 3
What version of your bootstrap?
-
-1
votes2
answers908
viewsA: Indication of the first negative number of a vector
Friend, from what I understand we go there. You put five number in a vector and then check if there are negatives? Skipping the part of putting values in the vector, look if this helps you.…
-
0
votes1
answer184
viewsA: Why does Codeigniter understand a route as a directory and break links?
Are you using the url helper? If so, you are also using base_url(); if not, the base_url it generates all the way of your project, needing only that you precisely list the folder and the name the…
-
-1
votes2
answers841
viewsA: Moving character and map with canvas+js
Good night, my dear. I am not giving you a solution in code, but I can tell you that the solution is not to move the character but the image behind using paralax. an example of the functioning of…
-
1
votes1
answer65
viewsA: I can’t do the limitation
I think the mistake might be in this part my friend. "if(isset($_GET['cliquei']) and !empty($_GET['cliquei'])){ $cliques = $_GET['cliquei'] + 24; }else{ $cliques = 24; }" For you icrementando more…