Posts by guilherme.oc97 • 181 points
4 posts
-
2
votes1
answer42
viewsA: Problem returning PHP function
$stmt->bind_param("i", $nome); This line is incorrect. You are passing $nome as an integer, but since this variable has an alphanumeric string in it, its function cannot turn letters into…
-
2
votes2
answers1557
viewsA: Does Node.js compile the Javascript that runs on the server?
Because Nodejs uses the Javascript V8 engine, its code is compiled on time to bytecode V8 virtual machine. Before this compilation, it solves the imports of modules and optimizes code logic. You can…
-
0
votes1
answer119
viewsA: How to create an interaction between 3 pages?
I believe that the interaction between these pages would be better in the server-side instead of trying to do client-side javascript. You can store the results of these commands from page A on…
-
1
votes3
answers1871
viewsA: File or character encoding error
Open the file in Notepad++ and change your encoding (coding): Encoding -> Convert to UTF-8 or Codificação -> Converter para UTF-8. If you do not want to (or cannot) download Notepad++, this…