Posts by Jotapê • 21 points
2 posts
-
1
votes3
answers8073
viewsA: Concatenate a link within a href attribute with a variable?
You can use "Eval", but its use is not recommended for security reasons. Thus: <!doctype html> <html lang="en"> <head> <meta charset="UTF-8">…
-
1
votes5
answers1939
viewsA: Sending form via AJAX, method PUT
I believe the problem lies in that line: url: "{{ URL::to('upload/'.Auth::user()->id) }}", If you notice the error message PUT…