Posts by Guilherme N • 44 points
3 posts
-
1
votes1
answer49
viewsA: Place an array in a Session
I recommend you to use $_SESSION['table']=json_enconde($array_table) to store and when to use the array again use the $_SESSION['table']=json_decode($array_table,true)…
-
1
votes1
answer52
viewsA: how to run an Insert query in a time interval with mysql
You can access your Mysql phpmyadmin, access the database and go on events (Event Scheduler), is next to routine. There you define the periodicity of the execution of this query, will be the fastest…
-
-2
votes2
answers733
viewsA: Social submission problems: Invalid event subscription
I had the same problem Signing of invalid event, I adopted this item from Pedro Gaspar’s reply $doc->save($xml_assinado,LIBXML_NOEMPTYTAG | LIBXML_HTML_NOIMPLIED | LIBXML_HTML_NODEFDTD); And I…