Posts by C. Bohok • 739 points
61 posts
-
2
votes1
answer477
viewsA: Codeigniter validation form does not allow accents and other "br" characters
You need to create your own rule. Just look at the implementation alpha_numeric_spaces codeigniter: public function alpha_numeric_spaces($str) { return (bool) preg_match('/^[A-Z0-9 ]+$/i', $str); }…
-
0
votes1
answer134
viewsA: Customizing Bootstrap WYSIWYG
The bootstrap-wysihtml5 it’s simple, light... and quite a bit limited. This button setting is not provided in code. To do this, you need to run a command in Jquery to delete the buttons, after they…
-
1
votes1
answer1026
viewsA: Bootstrap menu with logo in the middle
The very menu you demonstrate has already been built in Bootstrap. Just look, copy, and edit the source code as needed. (Original link http://www.hpadvocacia.com.br/) <nav class="nav-desk navbar…
-
2
votes1
answer543
viewsA: Script or API to check if domain is available in PHP
You don’t necessarily need an API. A simple file_get_contents( ) can solve your problem. Example 1: the domain test555.com.br is registered? $content =…
-
0
votes1
answer461
viewsA: To change a function parameter in the url with Codeigniter
It is possible to do what you ask: access the given URL an ID but be redirected to another that contains the client name in the URL (I don’t understand what is the advantage of this). What is not…
-
0
votes1
answer161
viewsA: I cannot run jar using exec command in php
Hello. Follow my considerations, of character not absolutely conclusive. The first check to be done is to manually execute the command java. The problem could be jar itself and not related to…
-
1
votes1
answer401
viewsA: Name of Uppercase Columns with Codeigniter and Postgreesql
Hello, if you wear even the Codeigniter query Builder, this question should be irrelevant. See your example being built by the query Builder: $this->db->select('id, nome'); $query =…
-
1
votes1
answer395
viewsA: Save the information of a variable in Codeigniter to the database
It seems to me that the contents of view is mistaken. In your case, the view should first serve to tell the user "Give me a URL to consult!" and then "Product successfully inserted!", "Product…
-
0
votes1
answer125
viewsA: Spring mvc bootstrap
Your question is answered with a Jquery implementation and an HTML post for Spring MVC to handle your choices, but is not really related to Spring MVC or Bootstrap. Why, once you’ve loaded your…
-
1
votes2
answers401
viewsA: Problem with json slim framework
There is nothing wrong with converting the string to JSON. The problem is that you cannot display the result with echo( ), because the return of the function json_decode( ) is an array. Experiment…
-
1
votes2
answers584
viewsA: Is it possible to create a communication between a Tkinter application and a pygame?
Is not possible combine the two libraries because they are graphic libraries with different goals, not to say competitors among themselves. It is possible to write a program that creates both a…