lookjapan.COM - IRC ve mIRC dünyasının forumu!   buy vps


  lookjapan.COM - IRC ve mIRC dünyasının forumu! IF - Web Tabanlı Uygulamalar vBulletin


Etiketlenen üyelerin listesi

Yeni Konu   Cevap Yaz

 
LinkBack Seçenekler Stil
Alt 19 Eylül 2015, 22:34   #1
 
Code - ait Kullanıcı Resmi (Avatar)
 
Üyelik tarihi: 01 Mart 2015
Mesajlar: 203
WEB Sitesi: www.code.com
IRC Sunucusu: irc.code.com
İlgi Alanı:
Alınan Beğeni: 33
Standart vBulletin Harici Sayfa - Login Formu - Son Konular

ilk önce reklam.php dosyamızı oluşturalım

PHP- Kodu: 
<?php

// ######################## SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);

// ##################### DEFINE IMPORTANT CONSTANTS #######################
// change the line below to the actual filename without ".php" extention.
// the reason for using actual filename without extention as a value of this constant is to ensure uniqueness of the value throughout every PHP file of any given vBulletin installation.

define('THIS_SCRIPT''reklam');

// #################### PRE-CACHE TEMPLATES AND DATA ######################
// get special phrase groups
$phrasegroups = array();

// get special data templates from the datastore
$specialtemplates = array();

// pre-cache templates used by all actions
$globaltemplates = array(
// change the lines below to the list of actual templates used in the script
'reklam',
);

// pre-cache templates used by specific actions
$actiontemplates = array();

// ########################## REQUIRE BACK-END ############################
require_once('./global.php');

// #################### HARD CODE JAVASCRIPT PATHS ########################
$headinclude str_replace('clientscript'$vbulletin->options['bburl'] . '/clientscript'$headinclude);

// ########################################################################
// ######################### START MAIN SCRIPT ############################
// ########################################################################

$navbits = array();
// change the line below to contain whatever you want to show in the navbar (title of your custom page)
$navbits[$parent] = 'Reklam Bilgileri';

$navbits construct_navbits($navbits);
eval(
'$navbar = "' fetch_template('navbar') . '";');

// change the line below to contain the name of the actual main output template used in your script
eval('print_output("' fetch_template('reklam') . '");');

('reklam') yazan yer reklam adlı template burda çalışsın anlamını taşıyor...
ozmn şimdi stil yönetimine geliyoruz kullandıgımız stile yeni bir template oluşturuyoruz ve adını reklam koyuyoruz..kodlar ise şöyle...

PHP- Kodu: 
$stylevar[htmldoctype]
<
html dir="$stylevar[textdirection]lang="$stylevar[languagecode]">
<
head>
$headinclude
<title>$vboptions[bbtitleReklam</title>
</
head>
<
body>

$header
$navbar

<table class="tborder" cellpadding="$stylevar[cellpadding]cellspacing="$stylevar[cellspacing]border="0" width="100%"

align="center">
<
table cellpadding="0" cellspacing="0" border="0" class="tborder" width="100%" align="center"><tr><td>
<
table cellpadding="6" cellspacing="1" border="0" width="100%">
<
tr>
<
td class="tcat">SHAL Forum Reklam Bilgileri</td>
</
tr>
<
tr>
<
table width="412" border="0" align="center" cellpadding="0" cellspacing="0"><br>
<
center>
        <
font size="2" face="tahoma">
                        <
div align="center">
                            <
font style="font-size: 8pt" face="Verdana" color="#000000">
                    
Yazınızı veya içeriginizi Buraya Yazın

</tr>
</
table><br><center><b>Powered by Shaltr.com</b></center>
<
br><br>
$footer
</body>
</
html

Harici Bir Sayfada Forumdaki Son Konular

PHP- Kodu: 
<?
$db_host 
"localhost"// Change this if your MySQL database host is different.
$db_name "root"// Change this to the name of your database.
$db_user "forum"// Change this to your database username.
$db_pw ""// Change this to your database password.

$forum_url "http://forum.shaltr.com"// Change this to reflect to your forum's URL.
$forum_id ""// If you wish to display the posts from a specific forum, enter the forum id here. Otherwise, leave it blank.
$limit "10"// Number of posts displayed.
$titlecolor "#FF0000"// This is the color of the title.
$postedcolor "#FFFFFF"// This is the color of the bottom text.
$txtlimit "100"// This is the character limit.
#######################################

// Connecting to your database
mysql_connect($db_host$db_user$db_pw)
OR die (
"Cannot connect to your database");
mysql_select_db($db_name) OR die("Cannot connect to your database");

// Below is the beginning of a table. If you feel you don't need it, you may remove it.
echo "<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"2\" bgcolor=\"#000000\">";

if (
$forum_id) {
$forumid "AND forumid=$forum_id";
}

if (
$limit) {
$limited "LIMIT $limit";
}
$thread_sql mysql_query("SELECT threadid,title,lastpost,lastposter FROM thread WHERE visible=1 AND open=1 $forumid ORDER BY lastpost DESC $limited");

while(
$thread_get=mysql_fetch_array($thread_sql))
{
$lastpost $thread_get['lastpost'];
$poster $thread_get['lastposter'];
$tid $thread_get['threadid'];
$psql mysql_query("SELECT postid FROM post WHERE threadid=$tid ORDER BY postid DESC");
$getp=mysql_fetch_array($psql);
$pid $getp['postid'];
$date2 date ("m/d/y h:i A" ,$lastpost);
$title $thread_get['title'];
$title substr($title,0,$txtlimit);
echo 
"<tr><td><font size=\"2\" face=\"verdana,arial,geneva\"><a href=\"$forum_url/showthread.php?p=$pid#post$pid\" rel="nofollow" target=\"_blank\"><FONT SIZE=\"2\" COLOR=\"$titlecolor\" face=\"verdana,arial,geneva\">$title</FONT></a></font><br /><font color=\"$postedcolor\" face=\"verdana,arial,geneva\" size='1'>gönderen: $poster </FONT></td></tr>";
}
echo 
"</table>";
?>

Foruma Harici Sayfadan Login olmak için gereken kodlar (ayarlarınızı kendinize göre değiştiriniz)

PHP- Kodu: 
<html>

<
head>

<
title>SHAL FORUM -  Döküman piskotilkinindir.</title>
</
head>

<
body>
<
table class="tborder" cellSpacing="1" cellPadding="6" width="1" align="center" border="0" height="174">
<
tr>
<
td class="panelsurround" align="middle" width="396" height="161">
<
div class="panel" style="width: 122; height: 195">
<
div align="left">
<
form action="http://www.shaltr.com/forum/login.php" method="post" target="_blank" style="display: inline" onsubmit="md5hash(vb_login_password,vb_login_md5password,vb_ login_md5password_utf)">
<
input type="hidden" value="login" name="do">
<
input type="hidden" value="1" name="forceredirect">
<
input type="hidden" value="http://www.shaltr.com/forum/index.php" name="url">
<
input type="hidden" name="vb_login_md5password">
<
input type="hidden" name="vb_login_md5password_utf">
<
input type="hidden" name="s">
<
fieldset class="fieldset" style="width: 111; height: 165">
<
legend style="color: #22229C; font-style: normal; font-variant: normal; font-weight: normal; font-size: 11px; font-family: tahoma, verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif">
Bağlan</legend>
<
table cellSpacing="3" cellPadding="0" align="center" border="0" width="107">
<
tr>
<
td style="font-size: 11px; font-style: normal; font-variant: normal; font-weight: normal; font-family: verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif" width="164">
Kullanıcı Adı:<br>
<
input class="bginput" accessKey="u" tabIndex="1" size="12" name="vb_login_username"></td>
</
tr>
<
tr>
<
td style="font-size: 11px; font-style: normal; font-variant: normal; font-weight: normal; font-family: verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif" width="164">
Şifre:<br>
<
input class="bginput" accessKey="p" tabIndex="1" type="password" size="12" value name="vb_login_password"></td>
</
tr>
<
tr>
<
td style="font-size: 11px; font-style: normal; font-variant: normal; font-weight: normal; font-family: verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif" width="164">
<
p align="justify"><span style="FLOAT: right">
<
a href="http://www.shaltr.com/forum/login.php?do=lostpw" style="color: #000020; text-decoration: none">
Şifremi unuttum</a></span>
<
label for="cb_cookieuser" style="cursor: default">
<
input id="cb_cookieuser" tabIndex="1" type="checkbox" CHECKED value="1" name="cookieuser">Beni
Hatırla
?
<
div align="center">
<
a href="http://www.shaltr.com/forum/register.php"><b>Kayıt Ol</b>
</
a>
</
div>
</
label> </td>
</
tr>
<
tr>
<
td align="right" style="font-size: 11px; font-style: normal; font-variant: normal; font-weight: normal; font-family: verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif" width="164">
<
input class="button" accessKey="s" tabIndex="1" type="submit" value="Bağlan" style="float: right; border: 1px solid #3E5C92; padding-left: 4; padding-right: 4; padding-top: 1; padding-bottom: 1">
</
td>
</
tr>
</
table>

</
fieldset>
</
form>
</
div>
</
div>
</
td>
</
tr>
</
table>
</
body>

</
html

Döküman piskotilkinindir.
 Code isimli Üye şimdilik offline konumundadır   Alıntı
Alt 16 Kasım 2024, 14:43   #2
 
Imankit - ait Kullanıcı Resmi (Avatar)
 
Üyelik tarihi: 14 Kasım 2024
Bulunduğu yer: Colombia
Mesajlar: 4
WEB Sitesi: ImankitTB
IRC Sunucusu: Imankit
İlgi Alanı: MySQL
Alınan Beğeni: 0
Standart kamagra plus dapoxetine

Beta lactamases are a diverse class of enzymes produced by bacteria that break open the beta lactam ring, inactivating the beta lactam antibiotic <a href=https://fastpriligy.top/>cheapest priligy uk</a>





[Üye Olmadan Linkleri Göremezsiniz. Üye Olmak için TIKLAYIN...]
 Imankit isimli Üye şimdilik offline konumundadır   Alıntı
Alt 25 Kasım 2024, 04:36   #3
 
Paulinesaubs - ait Kullanıcı Resmi (Avatar)
 
Üyelik tarihi: 25 Kasım 2024
Bulunduğu yer: Papua New Guinea
Mesajlar: 1
WEB Sitesi: PaulinesaubsKX
IRC Sunucusu: Paulinesaubs
İlgi Alanı: C#
Alınan Beğeni: 0
Standart microsoft defender antivirus ratings

We have thoroughly reviewed and evaluated the top [Üye Olmadan Linkleri Göremezsiniz. Üye Olmak için TIKLAYIN...] to provide our readers with a curated list of the most trusted providers. Safeguard your personal data and computer from cyber threats choose one of the leading antivirus solutions from the table below!





[Üye Olmadan Linkleri Göremezsiniz. Üye Olmak için TIKLAYIN...]
 Paulinesaubs isimli Üye şimdilik offline konumundadır   Alıntı
Alt 25 Kasım 2024, 06:37   #4
 
JerryKal - ait Kullanıcı Resmi (Avatar)
 
Üyelik tarihi: 10 Kasım 2024
Bulunduğu yer: Hungary
Mesajlar: 5
WEB Sitesi: JerryKalDY
IRC Sunucusu: JerryKal
İlgi Alanı: Hosting
Alınan Beğeni: 0
Standart online casino bonus no deposit

Casino is not just a game of luck; it's a thrilling challenge that can be mastered with the right strategy. Imagine the excitement of hitting 21 and beating the dealer with confidence. Whether you're a novice or an experienced player, learning [Üye Olmadan Linkleri Göremezsiniz. Üye Olmak için TIKLAYIN...] can transform your gaming experience and lead to significant wins. Don't miss out on the opportunity to improve your skills and enjoy the rewards. Start playing blackjack today and take the first step towards becoming a pro!





[Üye Olmadan Linkleri Göremezsiniz. Üye Olmak için TIKLAYIN...]
 JerryKal isimli Üye şimdilik offline konumundadır   Alıntı
Alt 25 Kasım 2024, 06:50   #5
 
Brycenoubs - ait Kullanıcı Resmi (Avatar)
 
Üyelik tarihi: 25 Kasım 2024
Bulunduğu yer: Ğîññèÿ
Mesajlar: 1
WEB Sitesi: BrycenoubsXU
IRC Sunucusu: Brycenoubs
İlgi Alanı: CR
Alınan Beğeni: 0
Standart ıâàêóàòîğ-ìàíèïóëÿòîğ h864t

Áëàãîäàğş çà ïîìîùü â ıòîì âîïğîñå, òåïåğü ÿ áóäó çíàòü.
ïåğåä òåì êàê âûçâàòü òåõíèêó - îöåíèòå îáñòîÿòåëüñòâà ãîñóäàğñòâà, [Üye Olmadan Linkleri Göremezsiniz. Üye Olmak için TIKLAYIN...] ıòî äàåò âîçìîæíîñòü ïğèíÿòü âàì îñíîâàííîå íà ôàêòàõ àíàëèç è çàùèòèòü âàø àâòîìîáèëü îò ëèøíèõ ïîëîìîê.





Ìàíèïóëÿòîğ - ñïåöèàëüíàÿ ïîãğóçî÷íàÿ ñïåöòåõíèêà, èìåşùàÿ ãèäğàâëè÷åñêèé èëè ìåõàíè÷åñêèé êğàí, [Üye Olmadan Linkleri Göremezsiniz. Üye Olmak için TIKLAYIN...] ñ ïîìîùüş êîòîğîãî âûïîëíÿåòñÿ çàãğóçêà òåõíèêè íà ïîãğóçî÷íóş ïëàòôîğìó ıâàêóàòîğà.
 Brycenoubs isimli Üye şimdilik offline konumundadır   Alıntı
Alt 25 Kasım 2024, 07:19   #6
 
GavinSloms - ait Kullanıcı Resmi (Avatar)
 
Üyelik tarihi: 25 Kasım 2024
Bulunduğu yer: Israel
Mesajlar: 18
WEB Sitesi: GavinSlomsHF
IRC Sunucusu: GavinSloms
İlgi Alanı: Ptlink
Alınan Beğeni: 0
Standart sumatriptan dosing 282 mg

Medication effects explained. Comprehensive drug guide.
[Üye Olmadan Linkleri Göremezsiniz. Üye Olmak için TIKLAYIN...]
Comprehensive medicine overview. Comprehensive medicine facts.





[Üye Olmadan Linkleri Göremezsiniz. Üye Olmak için TIKLAYIN...]
 GavinSloms isimli Üye şimdilik offline konumundadır   Alıntı
Alt 25 Kasım 2024, 07:43   #7
 
BSSITEAT - ait Kullanıcı Resmi (Avatar)
 
Üyelik tarihi: 15 Ağustos 2024
Bulunduğu yer: Russia
Mesajlar: 3
WEB Sitesi: BSSITEATRU
IRC Sunucusu: BSSITEAT
İlgi Alanı: Windows
Alınan Beğeni: 0
Standart Ññûëêà íà BlackSprut bs2site çåğêàëî

Îôèöèàëüíûé ñàéò BlackSprut, ññûëêà íà BlackSprut https bs2best at, bs2site at, pass login çåğêàëà ÒÎĞ (tor) ññûëêà onion [Üye Olmadan Linkleri Göremezsiniz. Üye Olmak için TIKLAYIN...] âõîä èëè ğåãèñòğàöèÿ - îòêğûòü ìàãàçèí íà ÁëåêÑïğóò èû2èóûå [Üye Olmadan Linkleri Göremezsiniz. Üye Olmak için TIKLAYIN...]





bs2web bs2site at, bs2best at
 BSSITEAT isimli Üye şimdilik offline konumundadır   Alıntı
Alt 25 Kasım 2024, 08:51   #8
 
ChrisNen - ait Kullanıcı Resmi (Avatar)
 
Üyelik tarihi: 25 Kasım 2024
Bulunduğu yer: Ğîññèÿ
Mesajlar: 1
WEB Sitesi: ChrisNenWY
IRC Sunucusu: ChrisNen
İlgi Alanı: MySQL
Alınan Beğeni: 0
Standart betting matches t151f

Íó òàê ñåáå...
Grand Salami: bet on total or more/less, which depends from the number of points scored during a certain day, [Üye Olmadan Linkleri Göremezsiniz. Üye Olmak için TIKLAYIN...] that recognized as part of a certain competition or league.





The last time I played single combat [Üye Olmadan Linkleri Göremezsiniz. Üye Olmak için TIKLAYIN...], I was left owing myself 20 greenbacks.
 ChrisNen isimli Üye şimdilik offline konumundadır   Alıntı
Alt 25 Kasım 2024, 08:52   #9
 
Rhodajoind - ait Kullanıcı Resmi (Avatar)
 
Üyelik tarihi: 09 Kasım 2024
Bulunduğu yer: El Salvador
Mesajlar: 2
WEB Sitesi: RhodajoindFW
IRC Sunucusu: Rhodajoind
İlgi Alanı: MySQL
Alınan Beğeni: 0
Standart online slots spielen

[Üye Olmadan Linkleri Göremezsiniz. Üye Olmak için TIKLAYIN...] bietet eine spannende und bequeme Möglichkeit, Ihre Lieblingsspiele bequem von zu Hause aus zu genießen. Mit einer großen Auswahl an Optionen können Sie jederzeit und überall Casino-Klassiker wie Poker, Blackjack und Spielautomaten spielen. Online-Casinos bieten ein spannendes Spielerlebnis mit realistischer Grafik und Live-Dealer-Optionen. Tauchen Sie noch heute in die Welt der online casinos ein und erleben Sie die Aufregung und die Vorteile des virtuellen Spielens Ihrer Lieblingsspiele.





[Üye Olmadan Linkleri Göremezsiniz. Üye Olmak için TIKLAYIN...]
 Rhodajoind isimli Üye şimdilik offline konumundadır   Alıntı
Alt 25 Kasım 2024, 09:18   #10
 
LeonaSal - ait Kullanıcı Resmi (Avatar)
 
Üyelik tarihi: 25 Kasım 2024
Bulunduğu yer: Ğîññèÿ
Mesajlar: 1
WEB Sitesi: LeonaSalKP
IRC Sunucusu: LeonaSal
İlgi Alanı: IRCHelp
Alınan Beğeni: 0
Standart virtual staging services y727w

İòî íà íåãî ïîõîæå.
boxbrownie's virtual display {#file_links["C:\Users\Admin\Desktop\file\gsa+en+T1k10kVictorMo stovoi2211242P2URLBB.txt",1,N] are lightning fast.





yes, with the website the [Üye Olmadan Linkleri Göremezsiniz. Üye Olmak için TIKLAYIN...] probable customers can visualize their homes because they could similar do by traditional staging.
 LeonaSal isimli Üye şimdilik offline konumundadır   Alıntı

Yeni Konu   Cevap Yaz

Etiketler
formu, harici, konular, login, sayfa, son, vbulletin


Konuyu Toplam 1 Üye okuyor. (0 Kayıtlı üye ve 1 Misafir)
 
Seçenekler
Stil

Yetkileriniz
Konu Acma Yetkiniz Yok
Cevap Yazma Yetkiniz Yok
Eklenti Yükleme Yetkiniz Yok
Mesajınızı Değiştirme Yetkiniz Yok

BB code is Açık
Smileler Açık
[IMG] Kodları Açık
HTML-Kodu Kapalı
Trackbacks are Açık
Pingbacks are Açık
Refbacks are Açık


Benzer Konular
Konu Konuyu Başlatan Forum Cevaplar Son Mesaj
Whois Login dEathLeSs Unreal - 4 Parça Kodlar 225 28 Ağustos 2024 16:25
C programlama diliyle basit kullanıcı ve şifre formu.. Entrance C ve C++ 0 03 Temmuz 2016 03:29
Dj Login TCL No_FeaR TCL Scriptler 0 24 Temmuz 2015 21:22
Wordpress Login Sayfasını Değiştirme Code Wordpress 0 22 Mart 2015 22:28
Çiftlerin en çok tartıştığı konular LiyA Kadınca 0 25 Şubat 2015 16:26

web hosting web hosting
 buy vds
 vps buy  instagram  facebook  twitter  online arkadaş  Domain al  Domain Sat  Alan adı al  online kpss  online hemşirelik kursu  online memurluk kursu  online ags  online ders  online ales  Satılık Alan adı 

Powered by vBulletin®
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.