Posts by etNos Snake • 106 points
4 posts
-
1
votes1
answer393
viewsA: Click on charge more and increase the LIMIT
You are confusing the Javascript connection with PHP. Javascript runs on the browser side and PHP runs on the server side. Your limit only increases on the server side. You can use javascript to…
-
1
votes2
answers614
viewsA: Request in the url with Laravel
but if I do localhost:8000/hotels/hotel name it is not working Can you fix error information that appears? However, make sure you have . htaccess configured. At the root of the project: <IfModule…
-
2
votes1
answer73
viewsA: Laravel - Route "insecure"
One solution I adopted recently, not to have so many steps on the user’s side was: Produces the link to the final consumer associated with the transaction and timestamp The client receives a link…
-
2
votes1
answer44
viewsA: Return values from Database
You are extending Class Connect with Characters and rewriting the fetch method. Characters fetch is overriding and so Connect fetch is never used. What is happening is that your while() is going…