Posts by Railson Luna • 1 point
4 posts
-
-1
votes1
answer221
viewsA: How to work with Session at the / jquery angle
You can use localStorage or sessionStorage Example: localStorage.setItem('dados', '{name:"railson", idade:26}'); and to recover: localStorage.getItem('dados'); The difference between the location…
-
-1
votes2
answers2119
viewsA: Display creation date (created_at) in Laravel 5.5 post
No need to put created_at and updated_at in fillable, the even manage these fields for you
-
0
votes1
answer76
viewsA: Problems when passing variable by url in wordpress
$.ajax({ type: "POST", url: url, date: date, Success: Success, dataType: dataType }); You can put tbm the information inside the DATA, since in this case you are sending a post.…
-
-2
votes3
answers236
viewsA: Job scheduling and publishing
You can work with cron, just every time you generate a new scheduling, vc generates a new cron file, this same one will make a request for somewhere in your system at the expected time, and in it…