الاثنين، 1 أبريل 2013

[ كود جافا سكربت Javascript ] كود اظهار نص بها روابط بالتناوب

كود اظهار نص بها روابط بالتناوب 












################# إنسخ ما بين المربعات #######################






<div style="position:relative;center:0px;top:0px">
<span id="highlighter" style="position:absolute;left:0;top:0;font-size:18px;font-family:Verdana;background-color:yellow;clip:rect(0px 0px auto 0px)"></span>
</div>
<script type="text/javascript">
var tickercontents=new Array()
tickercontents[0]='مدونة تطوير المواقع والمنتديات <a href="http://7ars1.blogspot.com/">text</a>'
tickercontents[1]='كتاب صحيح البخاري كاملا  <a href="asalahpal.com/bk">text</a>'
tickercontents[2]='دليل المواقع  <a href="asalahpal.com/dir">text</a>'
tickercontents[3]='منتديات الولايات المتحدة الكرماوية<a href="asalahpal.com">text</a>'
var tickdelay=3000 //delay btw messages
var highlightspeed=10 //10 pixels at a time.

////Do not edit pass this line////////////////

var currentmessage=0
var clipwidth=0

function changetickercontent(){
crosstick.style.clip="rect(0px 0px auto 0px)"
crosstick.innerHTML=tickercontents[currentmessage]
highlightmsg()
}

function highlightmsg(){
var msgwidth=crosstick.offsetWidth
if (clipwidth<msgwidth){
clipwidth+=highlightspeed
crosstick.style.clip="rect(0px "+clipwidth+"px auto 0px)"
beginclip=setTimeout("highlightmsg()",20)
}
else{
clipwidth=0
clearTimeout(beginclip)
if (currentmessage==tickercontents.length-1) currentmessage=0
else currentmessage++
setTimeout("changetickercontent()",tickdelay)
}
}

function start_ticking(){
crosstick=document.getElementById? document.getElementById("highlighter") : document.all.highlighter
crosstickParent=crosstick.parentNode? crosstick.parentNode : crosstick.parentElement
if (parseInt(crosstick.offsetHeight)>0)
crosstickParent.style.height=crosstick.offsetHeight+'px'
else
setTimeout("crosstickParent.style.height=crosstick.offsetHeight+'px'",100) //delay for Mozilla's sake
changetickercontent()
}

if (document.all || document.getElementById)
window.onload=start_ticking

</script>

#################################################









[ كود جافا سكربت Javascript ] وقت تصفح الزائر للصفحة

كود كم مضى من الوقت لتصفح الزائر صفحتك 







###### إنسخ ما بين المربعات ########

<meta http-equiv=content-language content=ar-sa>
<body>

<script language=javascript><!--
<!--
<!--
<!--
day=new Date();miVisit=day.getTime();function clock(){dayTwo=new Date();hrNow=dayTwo.getHours();mnNow=dayTwo.getMinutes();scNow=dayTwo.getSeconds();miNow=dayTwo.getTime();if(hrNow==0){hour=12;ap=" AM";}else if(hrNow<=11){ap=" AM";hour=hrNow;}else if(hrNow==12){ap=" PM";hour=12;}else if(hrNow>=13){hour=(hrNow-12);ap=" PM";}
if(hrNow>=13){hour=hrNow-12;}
if(mnNow<=9){min="0"+mnNow;}
else(min=mnNow)
if(scNow<=9){secs="0"+scNow;}else{secs=scNow;}
time=hour+":"+min+":"+secs+ap;document.form.button.value=time;self.status=time;setTimeout('clock()',1000);}
function timeInfo(){milliSince=miNow;milliNow=miNow-miVisit;secsVisit=Math.round(milliNow/ 1000);minsVisit=Math.round((milliNow/ 1000)/60);alert(" "
+" "
+"الوقت الذي قضيته في الصفحة  "+minsVisit+" دقيقة, و "
+secsVisit+" ثانية");}
document.write("<form name=\"form\">"
+"<input type=button value=\"Click for info!\""
+" name=button onClick=\"timeInfo()\"></form>");onError=null;clock();//-->
</script>


</font></p>
###################

[ كود جافا سكربت Javascript ] يسأل عن اسمك ويرحب بك

كود الترحيب باسم الزائر

جميل جدا 
معاينة على المدونة مباشرة 
عند فتحها 





####### إنسخ ما بين المربعات ######


<SCRIPT LANGUAGE="Javascript">

//http://www.kettaneh.net

name=window.prompt("ادخل أسمك.","");

document.write("<H1 align=center>مرحبا! "+name+".</H1>")

//-->

</script>

#####################





[ كود جافا سكربت ] كود انعكاس الصورة وكأنها على سطح مائي

كود انعكاس الصورة وكانها على سطح مائي



بدون الكود







بعد اضافة الكود







###### انسخ ما بين المربعات #######



<p align=center>
<img id=reflect src="رابط الصورة هنا ">
<br>
<script language=javascript1.2>function f1(){setInterval("mdiv.filters.wave.phase+=10",100);}
if(document.all){document.write('<img id=mdiv src="'+document.all.reflect.src+'" style="filter:wave(strength=3,freq=3,phase=0,lightstrength=30)  blur() flipv()">')
window.onload=f1}</script>
</strong></p>




###############################

[html] كود نص آله كاتبة جميل جدا

كود الكتابة ع شكل اله كاتبة 

-->
######### إنسخ ما بين المربعات ##############
<meta http-equiv=content-language content=ar-sa>
<script language=javascript><!--
var speed=50
var pause=2000
var timerID=null
var bannerRunning=false
var ar=new Array()
ar[0]="أهلا وسهلا بكم في"
ar[1]="مدونة تطوير المواقع والمنتديات"
ar[2]="أقوى مدونة في البرمجة والاكواد الجاهزة"
ar[3]="مع تحياتي "
var currentMessage=0
var offset=0
function stopBanner(){if(bannerRunning)
clearTimeout(timerID)
bannerRunning=false}
function startBanner(){stopBanner()
showBanner()}
function showBanner(){var text=ar[currentMessage]
if(offset<text.length){if(text.charAt(offset)==" ")
offset++
var partialMessage=text.substring(0,offset+1)
window.status=partialMessage
offset++
timerID=setTimeout("showBanner()",speed)
bannerRunning=true}else{offset=0
currentMessage++
if(currentMessage==ar.length)
currentMessage=0
timerID=setTimeout("showBanner()",pause)
bannerRunning=true}}//-->
</script>
<body onload="startBanner()">
#############################

[html] كود يشرح الرابط عند مرور الماوس عليه

كود يشرح الرابط عند مرور الماوس عليه 


-->










###### إنسخ ما بين المربعات #######




<body>

<DIV ID="dek" CLASS="dek"></DIV>
<SCRIPT TYPE="text/javascript">
<!--
Xoffset=-60;    // modify these values to ...
Yoffset= 20;    // change the popup position.

var nav,old,iex=(document.all),yyy=-1000;
if(navigator.appName=="Netscape"){(document.layers)?nav=true:old=true;}

if(!old){
var skn=(nav)?document.dek:dek.style;
if(nav)document.captureEvents(Event.MOUSEMOVE);
document.onmousemove=get_mouse;
}

function popup(msg,bak){
var content="<TABLE  WIDTH=200 BORDER=1 BORDERCOLOR=black CELLPADDING=2 CELLSPACING=0 "+
"BGCOLOR="+bak+"><TD ALIGN=center><FONT COLOR=white SIZE=4>"+msg+"</FONT></TD></TABLE>";
if(old){alert(msg);return;}
else{yyy=Yoffset;
 if(nav){skn.document.write(content);skn.document.close();skn.visibility="visible"}
 if(iex){document.all("dek").innerHTML=content;skn.visibility="visible"}
 }
}

function get_mouse(e){
var x=(nav)?e.pageX:event.x+document.body.scrollLeft;skn.left=x+Xoffset;
var y=(nav)?e.pageY:event.y+document.body.scrollTop;skn.top=y+yyy;
}

function kill(){
if(!old){yyy=-1000;skn.visibility="hidden";}
}

//-->
</SCRIPT>

<p align="center"><a href="http://7ars1.blogspot.com/" ONMOUSEOUT="kill()" ; ONMOUSEOVER="popup('مدونة تطوير المواقع والمنتديات اقوى مدونة عربية متخصصة في مجال البرمجة والاكواد والتطوير','blue')"><font face="Tahoma" color="#6699FF"><b>مدونة تطوير المواقع والمنتديات</b></font></a></p>

</body>

#####################

[html] كود تكبير الخط عند مرور الماوس عليه

كود تكبير الخط عند مرور الماوس عليه 











####### إنسخ ما بين المربعات #########


<meta http-equiv=content-language content=en-us>
<style fprolloverstyle>a:hover{color:#f0f;font-size:14pt;font-weight:bold}</style>
<p align=center><b><font face=sysy><a href="مدونة تطوير المواقع والمنتديات الاولى في عالم البرمجة والتقنية">
مدونة تطوير المواقع والمنتديات الاولى في عالم البرمجة والتقنية </a></font></b></p>
<p> </p>


#######################################

[java] كود خلفية ماتريكس روعة جدا


-->

كود خلفية ماتركس جميل جدا 















######## إنسخ ما بين المربعات ############


<script language="JavaScript">
if (document.all){
Cols=10;
Cl=24;
Cs=100;
Ts=10;
Tc='#FF9933';
Tc1='#FFCC00';
MnS=5;
MxS=10;
I=Cs;
Sp=new Array();S=new Array();Y=new Array();
C=new Array();M=new Array();B=new Array();
RC=new Array();E=new Array();Tcc=new Array(0,1);
document.write("<div id='Container' style='position:absolute;top:0;left:-"+Cs+"'>");
document.write("<div style='position:relative'>");
for(i=0; i < Cols; i++){
S[i]=I+=Cs;
document.write("<div id='A' style='position:absolute;top:0;font-family:Arial;font-size:"
+Ts+"px;left:"+S[i]+";width:"+Ts+"px;height:0px;color:"+Tc+";visibility:hidden'></div>");
}
document.write("</div></div>");

for(j=0; j < Cols; j++){
RC[j]=1+Math.round(Math.random()*Cl); 
Y[j]=0;
Sp[j]=Math.round(MnS+Math.random()*MxS);
for(i=0; i < RC[j]; i++){
 B[i]='';
 C[i]=Math.round(Math.random()*1)+' ';
 M[j]=B[0]+=C[i];
 }
}
function Cycle(){
Container.style.top=window.document.body.scrollTop;
for (i=0; i < Cols; i++){
var r = Math.floor(Math.random()*Tcc.length);
E[i] = '<font color='+Tc1+'>'+Tcc[r]+'</font>';
Y[i]+=Sp[i];

if (Y[i] > window.document.body.clientHeight){
 for(i2=0; i2 < Cols; i2++){
 RC[i2]=1+Math.round(Math.random()*Cl); 
 for(i3=0; i3 < RC[i2]; i3++){
 B[i3]='';
 C[i3]=Math.round(Math.random()*1)+' ';
 C[Math.floor(Math.random()*i2)]=' '+' ';
 M[i]=B[0]+=C[i3];
 Y[i]=-Ts*M[i].length/1.5;
 A[i].style.visibility='visible';
 }
 Sp[i]=Math.round(MnS+Math.random()*MxS);
 }
}
A[i].style.top=Y[i];
A[i].innerHTML=M[i]+' '+E[i]+' ';
}
setTimeout('Cycle()',20)
}
Cycle();
}
// -->
</script>

###########################

الأحد، 31 مارس 2013

[java] كود قائمة تحدي من خلال المربع ترفع ضغط القارئ

كود قائمة تحدي من خلال المربع ترفع ضغط القارئ






##### انسخ ما بين المربعات #######


<br>
<br>
<p><!--webbot bot="HTMLMarkup" startspan --><p align="center"><font face="MS Dialog Light" size="4"><b>  <a href="" onMouseover="alert('رسالة التوبيخ الاولى'); alert('رسالة التوبيخ الثانيه '); alert('رسالة التوبيخ الثالثه'); alert('رسالة التوبيخ الرابعه'); alert('رسالة التوبيخ الخامسه '); alert('رسالة التوبيخ السادسه'); alert('رسالة التوبيخ السابعه؟'); alert('الحين لازم ترسل لي رسالة تعتذر فيها مني انا (اسمك)'); alert('وافضل لك أرسل الرسالة لا أوريك نجوم الظهر'); document.bgColor='black'; document.fgColor='Red'; window.location.href='mailto:عنوانك البريدى?subject=انا اسـف جـداً يـ( اسمك ) انشاء الله ما عاد اكررها ثانيه';"">اتحداك تمرر الفاره  هنا</a>
<br>
<br>
<br>
<!--webbot bot="HTMLMarkup" endspan -->
<br>
<br>
<br>
</p>
<br>
<br>
<br>

#######################

[java] كود رسالة وداع عند خروج الزائر من الصفحة

كود رسالة وداع عند خروج الزائر من الصفحة






####### انسخ ما بين المربعات ##########

<body onUnload="window.alert('مع السلامة')">


##########################

[java] كود نص ملون بلونين من الداخل والخارج

نص ملون بـ لونين من الداخل والخارج






######## انسخ ما بين المربعات #########

<FONT size="15"><TABLE STYLE=filter:GLOW(color="brown",strength=#+9)><FONT COLOR="yellow">النص<BR> <P>  <BR></TABLE></FONT></FONT s>


############################

[java] كود الكتابة على صورة

كود الكتابة على صورة 


مدونة تطوير المواقع والمنتديات





####### انسخ ما بين المربعات #######



<CENTER>
<TABLE BORDER=1 WIDTH=500 Background="عنوان الصوره هنا">
<TR><TD ALIGN=CENTER><h1><FONT FACE="DecoType Naskh" SIZE="5"><FONT COLOR="white">
مدونة تطوير المواقع والمنتديات
</FONT></FONT>
</center>

</marquee></TD></TR></TABLE></center>


#######################

[java] كود جافا سكربت اضافة زي



زر 




####### انسخ ما بين المربعات #########

<form><input type="button" value="تعال واضغط" onClick="alert('مدونة تطوير المواقع والمنتديات واكواد الجافا سكربت والبي اتش بي '); return true"></form>

##########################

[java] كود كتابة مموجة

كود كتابة مموجة






###### انسخ ما بين المربعات ######


<center><font color="green" size="4">
<DIV STYLE="width: 504; height: 108; filter: wave(strength=4, freq=2, lightstrength=40, add=0, phase=20)">
<p align="center">
<marquee direction="up" height="98" scrollamount="2" width="137">
مدونة تطوير المواقع والمنتديات واكواد البي اتش بي والجافا سكربت
<a href=""></a><a href=""></a>
</marquee></DIV></FONT>

####################

[java] كود ادراج نص او كود يمكن نسخه

كود ادراج نص او كود يمكن نسخه








###### انسخ ما بين المربعات #######


<input style="color:black; font-family:Tahoma" NAME="send_name" size="88" value="مدونة تطوير المواقع والمنتديات ">


######################

[java] كود نص يتحرك لليسار

كود نص يتحرك لليسار





####### انسخ ما بين المربعات ######

<marquee direction="left" width="550" height="24" style="TAHOMA: 150%; font-size: 14pt; color: white; border-style: ridge; border-color: #0066FF" bgcolor="#800000" scrolldelay="100" scrollamount="3">
مدونة تطوير المواقع والمنتديات
</marquee>


#########################

[java] كود الكتابة على خلفية ملونة

كود الكتابة على خلفية ملونة







########### انسخ ما بين المربعات #########



<CENTER>
<DIV id=cdiv style="BACKGROUND-COLOR: 800000">
.
.
<P align=center>[qb]<FONT color=#ffffff  size=5>
مدونة تطوير المواقع والمنتديات طريقك نحو موقع ناجح
</FONT>[/qb]


#################################

[java] كود يتحرك لليمين داخل اطار

كود يتحرك لليمين داخل اطار


مدونة تطوير المواقع المنتديات طريقك نحو مستقبل مبهر
####### انسخ ما بين المربعات #######


<marquee direction="right" width="550" height="200" style="TAHOMA: 150%; font-size: 14pt; color: white; border-style: ridge; border-color: #0066FF" bgcolor="#000000" scrolldelay="100" scrollamount="3">
مدونة تطوير المواقع المنتديات طريقك نحو مستقبل مبهر
</marquee>



###########################

[java] كود نص يتحرك لأعلى



مدونة تطوير المواقع والمنتديات والمجلات والمدونات
#### إنسخ ما بين المربعات #####

<marquee direction="Up" scrollAmount="2">
<FONT size="4" COLOR="Blue">
مدونة تطوير المواقع والمنتديات والمجلات والمدونات
</FONT>
</marquee>

#########################

[java] كود لصق موقع داخل الموضوع

كود لصق موقع داخل الموضوع




##

<iframe frameborder=no width="100%" height="500" SRC="عنوان الموقع هنا/"></iframe>

##

[java] كود جافا سكربت نص يتحرك لأسفل

مدونة تطوير المواقع والمنتديات والمدونات عالم من الفن والتعلم والمعرفة





<marquee direction="Down" scrollAmount="2" width="298" height="60">
<FONT size="4" COLOR="Blue">
مدونة تطوير المواقع والمنتديات والمدونات عالم من الفن والتعلم والمعرفة
</FONT>
</marquee>
</font></b>

[php] كود عمل صورة مصغرة لصورة تم رفعها على موقعك





 <?
if ($_REQUEST['action']=="add"){

$userfile = $HTTP_POST_FILES['photo']['tmp_name'];
$userfile_name = $HTTP_POST_FILES['photo']['name'];
$userfile_size = $HTTP_POST_FILES['photo']['size'];
$userfile_type = $HTTP_POST_FILES['photo']['type'];

///////////////////////// 
//GET-DECLARE DIMENSIONS //

$dimension = getimagesize($userfile);
$large_width = $dimension[0]; // GET PHOTO WIDTH
$large_height = $dimension[1]; //GET PHOTO HEIGHT
$small_width = 120; // DECLARE THUMB WIDTH
$small_height = 90; // DECLARE THUMB HEIGHT

/////////////////////////
//CHECK SIZE  //

if ($userfile_size>102400){
 $error=1;
 $msg = "The photo is over 100kb. Please try again.";
}


////////////////////////////////
// CHECK TYPE (IE AND OTHERS) //

if ($userfile_type="image/pjpeg"){
 if ($userfile_type!="image/jpeg"){
 $error=1;
 $msg = "The photo must be JPG";
 }
}

//////////////////////////////
//CHECK WIDTH/HEIGHT //
if ($large_width!=600 or$large_height!=400){
$error=1;
$msg = "The photo must be 600x400 pixels";
}

///////////////////////////////////////////
//CREATE THUMB / UPLOAD THUMB AND PHOTO ///

if ($error<>1){
 
 $image = $userfile_name; //if you want to insert it to the database
 $pic = imagecreatefromjpeg($userfile);
 $small = imagecreatetruecolor($small_width,$small_height);
 imagecopyresampled($small,$pic,0,0,0,0, $small_width, $small_height, $large_width, $large_height);
 if (imagejpeg($small,"path/to/folder/to/upload/thumb".$userfile_name, 100)){    
 $large = imagecreatetruecolor($large_width,$large_height);
 imagecopyresampled($large,$pic,0,0,0,0, $large_width, $large_height, $large_width, $large_height);
 if (imagejpeg($large,"path/to/folder/to/upload/photo".$userfile_name, 100))
 {}
 else {$msg="A problem has occured. Please try again."; $error=1;}
 }
 else {
 $msg="A problem has occured. Please try again."; $error=1;
 }
}
//////////////////////////////////////////////

/// If everything went right a photo (600x400) and
/// a thumb(120x90) were uploaded to the given folders
}
?>

<html><head><title>create thumb</title></head>
<body>
<form name="form1" enctype="multipart/form-data" action="thisfile.php?action=add" method="post">
Select Photo: <input type="file" name="photo">
<input type="submit" name="submit" value="CREATE THUMB AND UPLOAD">
</form>
</body
</html>

[php] كود عمل بوب اب بالجافا سكربت







<?php
//Get all the images in the database (use a WHERE clause to limit what it finds)
$sql = mysql_query("SELECT * FROM database_name");
//Start A counter we will start at 1
$i = 1;
//Get all the returned results, save them in an array, and loop throught the array
//to display all the returned results
while($row = mysql_fetch_array($sql)){
 //Create a list from the returned image file, and make a $width and $height variable
 list($width, $height) = getimagesize("url/to/large/image/".$row['img_file_name']);
 //Add 30 to the returned width and height so it will fit in the popup window
 //If it still doesn't fit, change the two thirtys to a larger number.
 $width += 30;
 $height += 30;
 //Use javascript to make the popup
 //Everytime the script runs through, $i will change so we can have dynamic popup window sizes
 echo "
 <script type="text/javascript">
 function load".$i."(){
 var load = window.open('url/to/large/image/".$row['img_file_name']."', ' ', 'scrollbars=no,menubar=no,height=".$height.",width=".$width.",resizable=no,toolbar=no,location=no,status=no');
 }
 </script>";
 //This will display our thumbnail on the screen and make a link to the popup function
 //that was just created in the above javascript.
 echo'
 <p>
 <a href="javascript:load'.$i.'()">
 <img src="/portal/url/to/thumb/image/'.$row['img_file_name'].'" />
 </a>
 </p>';
 //Add one to $i
 $i++;
}
?> 

[php] كود معرفة عدد زوار الصفحة

Database Name:    active_sessions

 ip        session        date
 +--------+-----------+---------+
NULL    |   NO   |    YES    |   YES   |
 +--------+-----------+---------+
DEFAULT |        |    NULL   |   NULL  |
 +--------+-----------+---------+



<?php
session_start();
include"db.php"; # Connect To the database
$active_sessions = 0;
$minutes = 5; # period considered active
if($sid = session_id()) # if there is an active session
{
 # DB connect here
 $ip = $_SERVER['REMOTE_ADDR']; # Get Users IP address
 # Delete users from the table if time is greater than $minutes
 mysql_query("DELETE FROM `active_sessions` WHERE 
 `date` < DATE_SUB(NOW(),INTERVAL $minutes MINUTE)")or die(mysql_error()); 
 
 # Check to see if the current ip is in the table
 $sql = mysql_query("SELECT * FROM active_sessions WHERE ip='$ip'");
 $row = mysql_fetch_array($sql);
 # If the ip isn't in the table add it.
 if(!$row){
 mysql_query("INSERT INTO `active_sessions` (`ip`, `session`, `date`) 
 VALUES ('$ip', '$sid', NOW()) ON DUPLICATE KEY UPDATE `date` = NOW()")or die(mysql_error());
 }
 # Get all the session in the table
 $sessions = mysql_query('SELECT * FROM `active_sessions`')or die(mysql_error());
 # Add up all the rows returned
 $active_sessions = mysql_num_rows($sessions);
}
 # Print the final result
 echo'<b>Online Now: </b>'.$active_sessions;
?>

[php] كود عمل قائمة منسدلة

<?php
//Array contents array 1 :: value
$myArray1 = array('Cat','Mat','Fat','Hat');
//Array contents array 2 :: key => value
$myArray2 = array('c'=>'Cat','m'=>'Mat','f'=>'Fat','h'=>'Hat');

//Values from array 1
echo'<select name="Words">';
//for each value of the array assign a variable name word
foreach($myArray1 as $word){
 echo'<option value="'.$word.'">'.$word.'</option>';
}
echo'</select>';

//Values from array 2
echo'<select name="Words">';
//for each key of the array assign a variable name let
//for each value of the array assign a variable name word
foreach($myArray2 as $let=>$word){
 echo'<option value="'.$let.'">'.$word.'</option>';
}
echo'</select>';
?> 

[php] كود معرفة وقت تنفيذ كود الصفحة

<?php
//Create a variable for start time
$time_start = microtime(true);

// Place your PHP/HTML/JavaScript/CSS/Etc. Here

//Create a variable for end time
$time_end = microtime(true);
//Subtract the two times to get seconds
$time = $time_end - $time_start;

echo 'Script took '.$time.' seconds to exicute';
?> 
 

[php] كود اظهار صورة في يوم محدد



قم بعمل ملف تكست بتاريخ ومسار الصور

dateText.txt

default /logo/logo.gif
2007-04-01 /images/logo1.gif
2007-06-05 /images/logo2.gif
2007-08-10 /images/logo3.gif
2007-09-30 /images/logo4.gif
2007-12-25 /images/logo5.gif

صفحة التنفيذ



displayURL.php

 


الكود


<?php
 function imagedate(){
 $filename = "dateText.txt";
 $handle = fopen($filename, "r");
 $contents = fread($handle, filesize($filename));
 fclose($handle);
 $array = explode("n",$contents);
 foreach($array as $item){
 $arr = explode(" ",$item);
 if(date("Y-m-d") == $arr[0]){
 $val = $arr[1];
 $rtur = TRUE;
 break;
 }else{
 $rtur = FALSE;
 }
 }
 if($rtur){
 return $val;
 }else{
 $def = explode(" ",$array[0]);
 return $def[1];
 }
 }

 $url = imagedate();
 echo '<a href="'.$url.'">'.$url.'</a>';
?>





[php] كود اغلاق السكربت للصيانة

الخطوات:
قم بعمل جدول فى قاعدة بيانات اسكربتك وسميه maintenance  ويوجد به حقلين status وmessage
دخل رسالة الاغلاق فى حقل message

ثم نفذ الكود فى حالة أردت الاغلاق


<?php
 function maintenance() {
 if(mysql_connect('host','uname','passw')) {
 if(mysql_select_db('db')) {
 $maintenance_query = mysql_query("SELECT status,message FROM maintenance");
 $maintenance_array = mysql_fetch_array($maintenance_query);
 if($maintenance_array['status'] == 1) {
 die($maintenance_array['message']);
 }
 }
 }
 }
?> 

[php] كود ادخال كم كبير من البيانات بالقاعدة باستعلام واحد فقط

<?php
 // include the database
 include 'db.php';
 $query = 'INSERT INTO `table_name` (`ownerID`, `favorites`) VALUES ';
 // This foreach we will pretend that we passed an array of
 // checkboxs, which could be our favorite food for this example.
 foreach($_POST['favorites'] as $box){
 $b = mysql_real_escape_string($box); // Safe query string
 $query .= "('{$_SESSION['id']}', '$b'),";
 }
 // Remove the trailing comma at the end.
 $query = trim($query,',');
 // Perform the query
 mysql_query($query);
?> 

[php] كود أجبار الزائر على تحميل ملف اثناء تصفحة

<?php
$filename = $_GET['file']; //Get the fileid from the URL
// Query the file ID
$query = sprintf("SELECT * FROM tableName WHERE id = '%s'",mysql_real_escape_string($filename));
$sql = mysql_query($query);
if(mysql_num_rows($sql) > 0){
$row = mysql_fetch_array($sql);
// Set some headers
header("Pragma: public");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Content-Type: application/force-download");
header("Content-Type: application/octet-stream");
header("Content-Type: application/download");
header("Content-Disposition: attachment; lename=".basename($row['FileName']).";");
header("Content-Transfer-Encoding: binary");
header("Content-Length: ".filesize($row['FileName']));
 
@readfile($row['FileName']);
exit(0);
}else{
header("Location: /");
exit;
}
?>