Posts by Claudson Martins • 41 points
2 posts
-
2
votes1
answer146
viewsA: Error while collecting database information
If you do not want to create any clause for your query, just do not type anything, the NULLS which you have added are displaying syntax error. Leave your query as follows mysql_query("SELECT…
-
2
votes1
answer240
viewsA: javascript array communicating in php
You can use the JSON.stringify(array) in Javascript to encode the array and send it to PHP, where vc uses $array = json_decode($_POST['dados']); to read the variable passed. If you want to…