صفحة 1 من 1

????????? ??? ????? ????? ???? ????? ????

مرسل: الأربعاء يناير 19, 2011 11:13 pm
بواسطة gino
?????? ????? ..

???? ??? ???? ????? ???? ??? >>> http://www.google.com.sa/ig/directory?h ... afe=active
????? ?????? ?? ??????? ???? ?? ???? ????? ??????? ??????? ..
???????? ??? ????? ???? ?????? ?? ????? ?????? ?????? ??????? ..
?????????? ??? ?????? ?? ???? ?? ???? ?????? ?? ??????? ?????? ..
???????? ?? ..
???? ?????
????? ???????
????? ???????
????? ???????
????? ??????
???????
??????? ????????
?????? ??????
?????? ??????
???? ?????
???? ???????
???????
??? ?????
????? ???????

.. ??? ?? ???? ??????? .. ?? ????? ???? ???? ??? ???? ????? ??? ????? ???? ??? ???? ???????? ?
??????? ?????? ???? ????? ..
??? ??????? ..
???? php ???? ????? ?????? ..

كود: تحديد الكل

<?php
    define('IN_PHPBB', true);
    $phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './';
    $phpEx = substr(strrchr(__FILE__, '.'), 1);
    include($phpbb_root_path . 'common.' . $phpEx);

    // Start session management
    $user->session_begin();
    $auth->acl($user->data);
    $user->setup();

    page_header('?????');

    $template->set_filenames(array(
        'body' => 'maps_body.html',
    ));

    make_jumpbox(append_sid("{$phpbb_root_path}viewforum.$phpEx"));
    page_footer();
?>
????? html ???? ????? ?????? ..

كود: تحديد الكل

<!-- INCLUDE overall_header.html -->

<center><h2>?????</h2></center>
<br />
<center>
<script src="http://www.gmodules.com/ig/ifr?url=http://www.google.com/uds/modules/elements/localsearch/localsearch.xml&up_location=Makkah&up_largeMapMode=1&up_kml=0&up_traffic=&up_locationCacheString=&up_locationCacheLat=&up_locationCacheLng=&up_mapType=m&up_idleZoom=11&up_transitionQuery=&up_rawquery=&up_selectedtext=&synd=open&w=500&h=383&lang=all&country=ALL&border=%23ffffff%7C3px%2C1px+solid+%23999999&output=js"></script>
</center>
<br />
<!-- INCLUDE jumpbox.html -->
<!-- INCLUDE overall_footer.html -->
????? ???? ????? ??? ?????? ?????? ???? .. ??? ??????? ????? ??? ???????? ?? ??? ??????? ..
??? ?????? ?????? ..
??? php ????? ?? ..

كود: تحديد الكل

<?php
    define('IN_PHPBB', true);
    $phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './';
    $phpEx = substr(strrchr(__FILE__, '.'), 1);
    include($phpbb_root_path . 'common.' . $phpEx);

    // Start session management
    $user->session_begin();
    $auth->acl($user->data);
    $user->setup();

    page_header('?????? ??????');

    $template->set_filenames(array(
        'body' => 'times_body.html',
    ));

    make_jumpbox(append_sid("{$phpbb_root_path}viewforum.$phpEx"));
    page_footer();
?>
???? html ?? ..

كود: تحديد الكل

<!-- INCLUDE overall_header.html -->

<center><h2>?????? ??????</h2></center>
<br /><br /><br />
<center>
<form name="where">
<table border="0" width="200" cellspacing="0" cellpadding="3">
<tr>
<td width="100%">
<select name="city" size="1" onchange="updateclock(this);"> 
<option selected>??????? ??????</option>
<option value="3">????????</option>
<option value="4">????????</option>
<option value="3">??????</option>
<option value="3">?????</option>
<option value="4">????</option>
<option value="3">???</option>
<option value="3">???</option>
<option value="0">??????</option>
<option value="1">????</option>
<option value="3">???????</option>
<option value="0">????</option> 
<option value="1">????</option>
<option value="7">??????</option>
<option value="8">????? ????</option>
<option value="9">?????</option> 
<option value="10">?????</option>
<option value="12">????</option>
<option value="-10">?????</option>
<option value="-8">??? ?????????</option> 
<option value="-5">???????</option>
</select>
</td>
</tr>
<tr>
<td width="100%">
<script language="JavaScript">
/*
Drop Down World Clock- By JavaScript Kit (http://www.javascriptkit.com)
Portions of code by Kurt @ http://www.btinternet.com/~kurt.grigg/javascript
This credit notice must stay intact
Visit our site at http://www.star28.com/ for more code
*/

if (document.all||document.getElementById)
document.write('<span id="worldclock" style="font:bold 16px Arial;"></span><br>')

zone=0;
isitlocal=true;
ampm='';

function updateclock(z){
zone=z.options[z.selectedIndex].value;
isitlocal=(z.options[0].selected)?true:false;
}

function WorldClock(){
now=new Date();
ofst=now.getTimezoneOffset()/60;
secs=now.getSeconds();
sec=-1.57+Math.PI*secs/30;
mins=now.getMinutes();
min=-1.57+Math.PI*mins/30;
hr=(isitlocal)?now.getHours():(now.getHours() + parseInt(ofst)) + parseInt(zone);
hrs=-1.575+Math.PI*hr/6+Math.PI*parseInt(now.getMinutes())/360;
if (hr < 0) hr+=24;
if (hr > 23) hr-=24;
ampm = (hr > 11)?"PM":"AM";
statusampm = ampm.toLowerCase();

hr2 = hr;
if (hr2 == 0) hr2=12;
(hr2 < 13)?hr2:hr2 %= 12;
if (hr2<10) hr2="0"+hr2

var finaltime=hr2+':'+((mins < 10)?"0"+mins:mins)+':'+((secs < 10)?"0"+secs:secs)+' '+statusampm;

if (document.all)
worldclock.innerHTML=finaltime
else if (document.getElementById)
document.getElementById("worldclock").innerHTML=finaltime
else if (document.layers){
document.worldclockns.document.worldclockns2.document.write(finaltime)
document.worldclockns.document.worldclockns2.document.close()
}


setTimeout('WorldClock()',1000);
}

window.onload=WorldClock
//-->
</script>
<!--Place holder for NS4 only-->
<ilayer id="worldclockns" width=100% height=35><layer id="worldclockns2" width=100% height=35 left=0 top=0 style="font:bold 16px Arial;"></layer></ilayer>
</td></tr></table></form>
</center>
<br />
<!-- INCLUDE jumpbox.html -->
<!-- INCLUDE overall_footer.html -->
?? ??? ??????? ????? ??????? ?? ?????? ?? ??? ???????? ??????? ??? ??????? ? ??? ???? ????? ?? ????????? ?

????????? ??? ????? ????? ???? ????? ????

مرسل: الخميس يناير 20, 2011 1:39 pm
بواسطة Zero_Cool
?? ????? ??? ?? ??? ??????? ??? ????? ????????? ????? ????? ????? ????? ????? ??????? ??? ?????? ????? ?????? ??????? ...
??????? ?????? ????????

????????? ??? ????? ????? ???? ????? ????

مرسل: الجمعة يناير 21, 2011 2:14 am
بواسطة gino
???? ??? ???? ????? ..
????? ?? ???? ??? ??????? ?? ???? ??? ????? ????????? ..

??? ????? ???? ?????? (php+html) ???? ?????? .. ???????? ????? 15 ???? ?? ????? ???? ???? ?? ??????? ??????? ..
????? ?? ??? ????? ??????? ?? ???? ???????? ???????? ??????? ?? ?????? ..

?? ??? ????? ???? ??????? .. ?? ???? ??? ??????? ??? ??? ?? ????? ??? ??? ??????? ???? ??? ???? ???? ??? ????????..

????????? ??? ????? ????? ???? ????? ????

مرسل: الأحد يناير 23, 2011 3:34 pm
بواسطة gino
??? ???
?? ??? ????? ???? ?????? ..

????????? ??? ????? ????? ???? ????? ????

مرسل: الأحد يناير 23, 2011 7:11 pm
بواسطة Garebooo
???? ????? ? ???? ??? ???? ? ??? ???????? ???? ?? ??? ??????? ?? ????

????????? ??? ????? ????? ???? ????? ????

مرسل: الاثنين يناير 24, 2011 1:48 am
بواسطة gino
?? ??? ???? ??? ???? ??????? .. ???? ?? ??????? .. ????? ????? ??? ??? ?? ?????? ??????? ?????? .. ;)

????????? ??? ????? ????? ???? ????? ????

مرسل: الخميس فبراير 03, 2011 4:04 pm
بواسطة gino
??????? ??????? ??? ????? ??????? ???? ????? ..

????????? ??? ????? ????? ???? ????? ????

مرسل: الجمعة فبراير 04, 2011 1:10 am
بواسطة A.B.M.K
gino كتب:??????? ??????? ??? ????? ??????? ???? ????? ..
??? ?????? ?????

????????? ??? ????? ????? ???? ????? ????

مرسل: الجمعة فبراير 04, 2011 4:12 am
بواسطة gino
????? ?????? ??? ??????? ???? ???? ????? (?????) ??? ?? ??????? ??????? ..

???? .. ?????? ?????? http://www.ebdaa-symphony.com/quran.php
???? ????? ??????? http://www.ebdaa-symphony.com/weight.php
??????? http://www.ebdaa-symphony.com/translation.php
???? ???? ??????? http://www.ebdaa-symphony.com/speed.php
????? ?????? http://www.ebdaa-symphony.com/maps.php
????? ??????? http://www.ebdaa-symphony.com/currency.php

?????? .. ??? ???? ???? ???????? .. ?????? ??? ??????? ??? ??????? ?????? .. :)

????????? ??? ????? ????? ???? ????? ????

مرسل: الجمعة فبراير 04, 2011 4:47 am
بواسطة A.B.M.K
??? ???? , ?? ?? ??? ?? ???? ?????? ?? ????? ????? !

???? ??? ???? ??????? ???????? ??

????????? ??? ????? ????? ???? ????? ????

مرسل: الجمعة فبراير 04, 2011 2:31 pm
بواسطة gino
????? ????? ???? ?? ??? ?????? ???? ?
???? ?????? ??? ????? ??????? ????? ???????? ??? ?????? ??? ??? ????? ..

???????? ???????? ?????? ?? ???? ???????? ??????? ?????? ????? ??? ????????? .. ^^

????????? ??? ????? ????? ???? ????? ????

مرسل: الجمعة فبراير 04, 2011 3:22 pm
بواسطة A.B.M.K
???? ?????? ?? , ?? ????? ?????? ? ????? ????? ;)

??????? ??????? ? ??? ?? ??? ???? ?????????? , ???? ????? ???? ?????? ??? ????? , ??? ??? ????? ???? ?? IP ? ??? ???? ???? ????

??? ???? ???? ???????

????????? ??? ????? ????? ???? ????? ????

مرسل: الجمعة فبراير 04, 2011 4:51 pm
بواسطة gino
??????? ????? ?? ??? ???? ?? ??? ???? ?? ????? ????? ..

???????? ????? .. ???? ?? ????? ???? ????? ???? ?? ??? ??? ??? ??????? ..
??????? ??? ?? ??? ?? ???? ???? ??? ?????? (??? ????? ??? ???? ??) ..
??? ????? ???? .. ??? ???? ????? ??????? ?? ???? ????? ..
??????? .. ?? ??? ???? ????? ????? .. ???? ?????? ??? ??????? ????? ..