Posts by Rafael Gonçalves • 71 points
3 posts
-
2
votes1
answer92
viewsA: Error while printing mysql data
you can try to replace this } else { return $mysqli; } therefore } else { $mysqli->set_charset("utf8"); return $mysqli; } something else Check the encoding of ALL your files. Only the meta tag…
-
2
votes1
answer1903
viewsA: pgsql connection problems in Laravel 5.1
maybe your config/database.php file, in the default attribute is like this: 'default' => env('DB_CONNECTION', 'mysql'), positive case, switch to 'default' => env('DB_CONNECTION', 'pgsql'),…
-
-1
votes4
answers8168
viewsA: Is it possible to make an IF with javascript directly in html?
you will not be able to divert the flow with javascript this way you did. you can insert the html inside the javascript <script type="text/javascript"> var btn = '<button…