Contents:
Can you help me in this how can i do this?
Do you have code?
How can I convert passwords of previous users stored in plain text to encrypted?
Can you help me in this how can i do this?
Do you have code?
How can I convert passwords of previous users stored in plain text to encrypted?
nguyentrihien 2021-01-08 17:15:57
2021-01-08 17:14:11
Search on google about how to use websockets in php
But I don’t understand how it works
nguyentrihien 2021-01-08 17:16:40
2021-01-08 17:14:37
There are many libraries available for it
Just use any one 🙏
Can you guide
kishor10d 2021-01-08 17:49:09
If you need websocket, search for php ratchet websocket
kishor10d 2021-01-08 17:49:31
You can develop, pub-sub mechanism using that
kishor10d 2021-01-08 17:50:11
But I can’t understand one thing, if you have json formatted data in response then what is the use of websocket??
trisharoy96 2021-01-08 19:23:24
input validation through jquery for accepting upto 10 characters
trisharoy96 2021-01-08 19:23:39
can anyone suggest me
trisharoy96 2021-01-08 19:23:56
html max attribute not working
RiteshBhavsar 2021-01-08 19:26:49
<input type=”tel” minlength=”10″ maxlength=”10″ id=”mobile” name=”mobile” title=”10 digit mobile number” required> $(‘#mob_frm’).submit(function(e) { e.preventDefault(); if(!$(‘#mobile’).val().match(‘[0-9]{10}’)) { alert(“Please put 10 digit mobile number”); return; } });
trisharoy96 2021-01-08 19:32:41
Thanks it would help a lot
RiteshBhavsar 2021-01-08 19:33:49
Have u tried?
nguyentrihien 2021-01-09 09:35:29
kishor10d 2021-01-08 17:50:11
But I can’t understand one thing, if you have json formatted data in response then what is the use of websocket??
So I don’t know how to write this kind, so I ask you to show me
2021-01-09 11:07:37
trisharoy96 2021-01-08 19:23:56
html max attribute not working
Use jquery validation
kameshindore 2021-01-09 11:08:20
trisharoy96 2021-01-08 19:23:56
html max attribute not working
Trisha, its simple query dear.
kameshindore 2021-01-09 11:08:40
Let me know if ur still struggling with that.
VivekBhatti 2021-01-09 13:11:07
Hello ,
I want to refresh some part of php and html code without refreshing the whole page . Can you help me in this how can i do this?
I want to refresh some part of php and html code without refreshing the whole page . Can you help me in this how can i do this?
Guudu 😊 2021-01-09 13:11:44
Use jQery
2021-01-09 13:11:51
VivekBhatti 2021-01-09 13:11:07
Hello ,
I want to refresh some part of php and html code without refreshing the whole page . Can you help me in this how can i do this?
I want to refresh some part of php and html code without refreshing the whole page . Can you help me in this how can i do this?
Jquery load function
RiteshBhavsar 2021-01-09 13:20:00
VivekBhatti 2021-01-09 13:11:07
Hello ,
I want to refresh some part of php and html code without refreshing the whole page . Can you help me in this how can i do this?
I want to refresh some part of php and html code without refreshing the whole page . Can you help me in this how can i do this?
jQuery with defining some seconds as time u want to refresh
VivekBhatti 2021-01-09 13:20:40
RiteshBhavsar 2021-01-09 13:20:00
jQuery with defining some seconds as time u want to refresh
Do you have code?
RiteshBhavsar 2021-01-09 13:23:36
VivekBhatti 2021-01-09 13:20:40
Do you have code?
https://crunchify. com/how-to-refresh-div-content-without-reloading-page-using-jquery-and-ajax/
RiteshBhavsar 2021-01-09 13:23:45
Remove space from url
2021-01-09 14:00:38
Hey, I’m currently implementing Password hashing. The method I’m going to use is blowfish. So, now the new registered users will have password stored in Hash. How can I convert passwords of previous users stored in plain text to encrypted?
akshaykumar51 2021-01-09 15:01:02
2021-01-09 14:00:38
Hey, I’m currently implementing Password hashing. The method I’m going to use is blowfish. So, now the new registered users will have password stored in Hash. How can I convert passwords of previous users stored in plain text to encrypted?
Force them to change password
RiteshBhavsar 2021-01-09 15:06:08
akshaykumar51 2021-01-09 15:01:02
Force them to change password
Or u can manually change the PWD with creative custom function and call it with any seperate file
trisharoy96 2021-01-09 18:25:47
kameshindore 2021-01-09 11:08:40
Let me know if ur still struggling with that.
its all sorted , thanks for your support
RiteshBhavsar 2021-01-09 18:26:25
trisharoy96 2021-01-09 18:25:47
its all sorted , thanks for your support
How
RiteshBhavsar 2021-01-09 18:26:33
Using which code
trisharoy96 2021-01-09 18:26:51
your code sir
trisharoy96 2021-01-09 18:27:00
thanks to you also
RiteshBhavsar 2021-01-09 18:27:05
Thank u
RiteshBhavsar 2021-01-09 18:27:11
I m not sir 🙂
2021-01-09 21:00:30
Use md5 function in php to encrypt
2021-01-09 21:00:35
Your pswrd
kameshindore 2021-01-09 21:01:55
2021-01-09 21:00:30
Use md5 function in php to encrypt
AK md5 is deprecated need to using extra layer like crypt, salt etc.