well done man this videos are more useful for beginners
@Gonlinein4 жыл бұрын
Bahut acha sir
@ProgrammingwithVishal4 жыл бұрын
Thanks
@weforyouweb11655 жыл бұрын
Great! very helpful. I have seen the first video on cookie practical with an example so thanks a lot.
@ProgrammingwithVishal5 жыл бұрын
Always Welcome
@roshan9903 жыл бұрын
Awesome, hindi videos are much better than english videos.
@ProgrammingwithVishal3 жыл бұрын
Glad you think so!
@hackdip27754 жыл бұрын
Sir please make a video on recommended system like Instagram and flipkart
@worldnews89975 жыл бұрын
greate
@khabibdeagle_29942 жыл бұрын
In mysql update query of option_value does not increase option value Whenever I try to update 0 rows effected.but no data update in option_value
@crazyanurag1234 жыл бұрын
I want to create a login system in which after login for the first time, they should log in to the same system and do not login to any mobile and desktop. That is possible. If possible kindly tell me about that
@devmehta24754 жыл бұрын
I want to ask you that is there a way to auto delete any row from table after some seconds or minutes ?
@ProgrammingwithVishal4 жыл бұрын
Yes you can use cron job for this
@TanmayUnadkat001 Жыл бұрын
Sir I am stucked between relationship of cookie and session. How the cookie maintains state of current user with session? What is session Id and how session id is matched with cookie with request? Does cookie matches session id automatically with request or we have to manually check it on server side? Plz explain......🙏
@shifalidoshi42434 жыл бұрын
How did u create that table ? I mean in which software ?? Where is that database created ?
@ProgrammingwithVishal4 жыл бұрын
I am using regulat PHPMyAdmin here to create database and table.
@akilljain5 жыл бұрын
PDO connectivity can you make one video for different different type of Connectivity through mysql.
@ProgrammingwithVishal5 жыл бұрын
Sure Akhil. Will do in my next video. That will be live on coming Monday
@akilljain5 жыл бұрын
@@ProgrammingwithVishal thank You, Sir, I'm waiting for your upcoming video!
@ProgrammingwithVishal5 жыл бұрын
Here is your video. kzbin.info/www/bejne/p6fTd4iVrZafjLc
@akilljain5 жыл бұрын
@@ProgrammingwithVishal mere iss code mai update query work nhai kar rhai hai...echo $update_sql = "UPDATE cookie_rate set option_value=option_value+1 WHERE 'option'= '$rate'"; or same coding hai
@ProgrammingwithVishal5 жыл бұрын
@@akilljain query ko print Karo or phpmyadmin main run Karo, answer mil jayega
@SudhirRajSR4 жыл бұрын
Dear sir, Please explain what is the work of ` in line before and after option $update_sql="update rate set option_value=option_value+1 where `option`='$rate'"; Thanks for your information regarding cookies.
@ProgrammingwithVishal4 жыл бұрын
' basically used when we used mysql predefined keywords. Like if we have column name like order or select. These are mysql predefined keywords, and when we said `select` or `order` so that means we are talking about our column name not predefined.