jeblaje Posted January 14, 2022 Share Posted January 14, 2022 (edited) Hola amigos tengo una duda, estoy usando MySQL para la base de datos y tengo el inicio de sesión pero una vez logueado ¿Cómo hago para enviar una petición desde el cliente para identificar el usuario que hace la petición??? Esto para los que programan web, seria guardar en el localStorage de la pagina web donde tengo almacenado el usuario conectado y con el que hago las peticiones O es que tengo que estar llevando a todas partes la variable user? O envió a un archivo de tipo cliente una variable que este siempre ahí? pero esto implicaría que se perdiera esta variable por algún error?? Edited January 14, 2022 by jeblaje Link to comment
Administrators Tut Posted January 14, 2022 Administrators Share Posted January 14, 2022 Moving this into Spanish scripting. Link to comment
jeblaje Posted January 19, 2022 Author Share Posted January 19, 2022 Ho sorry, i gonna translate that. i can't edit my post? Link to comment
jeblaje Posted January 19, 2022 Author Share Posted January 19, 2022 i can't do this, i dont know how do it Link to comment
Administrators Tut Posted January 19, 2022 Administrators Share Posted January 19, 2022 58 minutes ago, jeblaje said: Ho sorry, i gonna translate that. i can't edit my post? No problem - there is no need to edit your post, as it's now located in the Spanish forums Link to comment
jeblaje Posted January 19, 2022 Author Share Posted January 19, 2022 5 hours ago, Tut said: No hay problema: no es necesario que edites tu publicación, ya que ahora se encuentra en los foros en español. I just created another post in Spanish with the same thing, could you please delete this one since it won't let me? Link to comment
Administrators Tut Posted January 19, 2022 Administrators Share Posted January 19, 2022 Your other threads were removed as duplicates, please continue to use this one Link to comment
_SAXI_ Posted January 20, 2022 Share Posted January 20, 2022 Hola @jeblaje, creo entender lo que dices. Sería algo así: Server-side local mydb = dbConnect(...); function my_func(tipo,...) local qh; if(mydb)then if(tipo == 1)then qh = mydb:exec("UPDATE Cuentas SET Nombre=? WHERE Nombre=?",arg[1],arg[2]); elseif(tipo == 2)then qh = mydb:exec("UPDATE Cuentas SET Rango=? WHERE Nombre=?",arg[1],arg[2]); --... end end if(qh)then triggerClientEvent(client,"clientExecutedQuery",resourceRoot,tipo); end end addEvent("clientExecDB",true); addEventHandler("clientExecDB",root,my_func); Client-side function sendQuery(tipo,...) triggerServerEvent("clientExec",localPlayer,tipo,...); end function onSendQuery(tipo) outputChatBox("Proceso "..tostring(tipo).." Ejecutado correctamente"); end addEvent("clientExecutedQuery",true); addEventHandler("clientExecutedQuery",root,onSendQuery); addEventHandler("onClientResourceStart",resourceRoot,function() sendQuery(1,"NuevoNombre","MiNombre"); sendQuery(2,"Admin","NuevoNombre"); end); Espero haber ayudado, si no es esto lo que necesitas, orientanos un poco más para tratar de resolver tu duda Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now