Posts by Jeremias Pereira • 123 points
7 posts
-
0
votes1
answer160
viewsQ: Get url parameter in GET request using REST
Hello guys I have a question. When I make the request: GET /Withdraw/30 Since the value "30" is not linked to a key, then you cannot use the $_GET['chave']. The way I thought was to do this: $valor…
-
2
votes1
answer291
viewsQ: Array conversion with json_encode PHP
Whoa, somebody knows why when I do this: json_encode(array("0" => 0)); Return that: [0] Instead: {"0":0}
-
1
votes1
answer140
viewsQ: ui-select - How to put "name" attribute
Little problem here for a change, someone already worked with ui-select, I’m using in a project here within a client registration form to select states and cities, this working beauty, but it does…
-
6
votes2
answers9439
viewsA: I can’t center an image semantically
Create the following css rule: header img{ display: block; margin: auto; }
-
2
votes1
answer420
viewsQ: Remove video context menu from Vimeo
Someone would know how to remove the menu-context of videos from Vimeo because it has the option to "save as" that saves my video, even if it is private in my account the person can access…
-
0
votes2
answers299
viewsA: Display data in the table
A good tip is to use bootstrap, it is a css framework, very easy to use and for free (http://getbootstrap.com/2.3.2/index.html) After adding the framework, you do so: <div class="row-fluid">…
-
1
votes1
answer84
viewsQ: SUBSTRING_INDEX with REGEX
It has as I make a search of the last name of a people but with regular expression? Today I use the SUBSTRING_INDEX to catch the last name, the more I want to take parts of this last name, when I…