PHP Tutorial
Complete course in PHP | step by step | Cookies & Sessions.
Advanced PHP Course - Learn & Master PHP - lesson 15
Cookies & Sessions.

A session is a global variable stored on the server. Each session is assigned a unique id which is used to retrieve stored values. Sessions have the capacity to store relatively large data compared to cookies. The session values are automatically deleted when the browser is closed.

A cookie is often used to identify a user. A cookie is a small file that the server embeds on the user's computer. Each time the same computer requests a page with a browser, it will send the cookie too. With PHP, you can both create and retrieve cookie values.

البداية الصحيحة للدخول إلى عالم تطوير الويب
دورة احترافية كاملة لتعلم لغة الـ بي إتش بي - الدرس الخامس عشر

Session:
هي متغير عام مخزن على الخادم. يتم تعيين معرف فريد لكل جلسة يتم استخدامه لاسترداد القيم المخزنة. تتمتع الجلسات بالقدرة على تخزين بيانات كبيرة نسبيًا مقارنة بملفات تعريف الارتباط. يتم حذف قيم الجلسة تلقائيًا عند إغلاق المتصفح.

Cookie:
غالبًا ما يستخدم ملف تعريف الارتباط لتحديد هوية المستخدم. ملف تعريف الارتباط هو ملف صغير يقوم الخادم بتضمينه على كمبيوتر المستخدم. في كل مرة يطلب فيها نفس الكمبيوتر صفحة بها متصفح ، سيرسل ملف تعريف الارتباط أيضًا. باستخدام PHP ، يمكنك إنشاء واسترداد قيم ملفات تعريف الارتباط.

كورس - دورة - باللغة العربية