منتدى شروحات البرامج وأسرار الكمبيوتر
هل تريد التفاعل مع هذه المساهمة؟ كل ما عليك هو إنشاء حساب جديد ببضع خطوات أو تسجيل الدخول للمتابعة.

أكواد معلومات الزائر:كم مرة زرت فيها الموقع

اذهب الى الأسفل

أكواد معلومات الزائر:كم مرة زرت فيها الموقع Empty أكواد معلومات الزائر:كم مرة زرت فيها الموقع

مُساهمة من طرف |أبو عرب| الثلاثاء يناير 13, 2009 4:47 pm


كم مرة زرت فيها الموقع


أنسخ الكود التالي في
<body>
-------------------------
<SCRIPT LANGUAGE="JavaScript">
<!--
// Boolean variable specified if alert should be displayed if cookie exceeds 4KB
var caution = false

// name - name of the cookie
// value - value of the cookie
// [expires] - expiration date of the cookie (defaults to end of current session)
// [path] - path for which the cookie is valid (defaults to path of calling document)
// [domain] - domain for which the cookie is valid (defaults to domain of calling document)
// [secure] - Boolean value indicating if the cookie transmission requires a secure transmission
// * an argument defaults when it is assigned null as a placeholder
// * a null placeholder is not required for trailing omitted arguments
function setCookie(name, value, expires, path, domain, secure) {
var curCookie = name + "=" + escape(value) +
((expires) ? "; expires=" + expires.toGMTString() : "") +
((path) ? "; path=" + path : "") +
((domain) ? "; domain=" + domain : "") +
((secure) ? "; secure" : "")
if (!caution || (name + "=" + escape(value)).length <= 4000)
document
|أبو عرب|
|أبو عرب|
Admin

ذكر عدد الرسائل : 177
تاريخ التسجيل : 13/01/2009

https://shareh.ahlamontada.com

الرجوع الى أعلى الصفحة اذهب الى الأسفل

الرجوع الى أعلى الصفحة

- مواضيع مماثلة

 
صلاحيات هذا المنتدى:
لاتستطيع الرد على المواضيع في هذا المنتدى