Posts by Junior CT • 439 points
12 posts
-
1
votes3
answers2136
viewsQ: Error 500 Internal Server Error
I am trying to make a POST query with jquery on my website online but I get the error message 500 Internal Server Error, this is the query (jquery): $('#background').load('map_page.php',…
-
1
votes1
answer31
viewsQ: Resolution compatibility
I am developing an interactive map and need to position some images inside it, I am using the top and left properties to position the element, the problem is that the position changes in different…
-
0
votes1
answer332
viewsQ: Value problem containing comma
When executing this query: mysqli_query($dbc, "insert into toons values(NULL, $toonId, '$toonName', $admin, '$dna', $bank, $money, $hp, '$inventory', $lastPlace)") I get this mistake: You have an…
-
1
votes1
answer676
viewsQ: Problem with HTML and MYSQL accentuation
I’m having a lot of issues with accentuation, first of all, I’m using WAMP Server. The charset of my site is as UTF-8, that’s why the ISO-xxx... simply uncouples the whole accent of the HTML page,…
-
2
votes3
answers956
viewsQ: Auto completing input with address
Is there an API that when typing a city name for example, will the suggestion appear as the city name below the form? Please do not send the Place Autocompleter from Google, I need an API that…
-
0
votes1
answer1180
viewsQ: Syntaxerror: can’t assign to Operator
I’m using the following code: Levels[track][level] > UnpaidMaxSkills[track] or self.inventory[track][level] += amount Only I get the mistake: Syntaxerror: can’t assign to Operator What might be…
-
3
votes1
answer607
viewsQ: How to decompile code from a python module using marshal?
I would like to get the bytecode of a module in Python and save in a pyc with marshal. Example: abc test module t2 mod2 So I would import abc.test.module and would like to get the bytecode and so…
-
2
votes2
answers151
viewsQ: Syntax error in query
I am running the following php code: require_once "config.php"; $pagina = $_POST['pagina']; $conteudo = $_POST['edit']; //mysql_query("DELETE FROM $pagina WHERE 1") or die("alguma coisa deu…
-
1
votes2
answers391
viewsQ: mysql_query returning false
I’m trying to get information from my database but it’s not returning content, only a fake boolean: require_once "config.php"; // database $sql = mysql_query("SELECT * FROM home") or die("MySQL…
-
-1
votes1
answer146
viewsQ: Error while collecting database information
I’m having a problem getting information from a database, the code I tried was this: require_once "config.php"; // database $sql = mysql_query("SELECT conteudo FROM home NULL NULL NULL") or…
-
15
votes4
answers31096
viewsQ: Writing and reading file via Javascript
It is possible (if, how) to do the following method with Javascript? The person type in a form some arguments, by clicking submit it will run a Javascript code, in this code the function will take…
-
2
votes2
answers485
viewsQ: Editing page contents via Jquery and leaving fixed
I would like to know the method of editing the page and leave the content I edited fixed there forever, as if it were a post. I’ve tried that already: <style type="text/css"> .aprovado{…