coldasice
Dec 24 2007, 01:57 AM
CODE <?PHP
?> <html> <head> <title>Example</title> <style> <!-- A { color: #003366; text-decoration: none; } A:link { color: #003366; text-decoration: none; } A:visited { color: #003366; text-decoration: none; } A:active { color: #54622D; } A:hover { color: #54622D; }
BODY,TD,TR{ font-family: verdana, arial, sans-serif; color:#000; font-size:11; font-weight:normal; } .banner { font-family: georgia, verdana, arial, sans-serif; color:white; font-size:x-large; font-weight:bold; border-left:1px solid #FFF; border-right:1px solid #FFF; border-top:1px solid #FFF; background:#003366; padding:7px; } .description{ font-family:verdana, arial, sans-serif; font-size:x-small; font-weight:bold; }
//--> </style> </head> <body bgcolor="#ffffff"> <div align="center"><center> <table border="0" width="700" cellspacing="0" cellpadding="0"> <tr> <td class=banner > Put here your title<br> <span class="description">and this is your description</span> </td> </tr>
<tr> <td> </center>
<table border="0" width="100%" cellspacing="0" cellpadding="6"> <tr> <td width="180" valign=top style="border-right: 1px dotted #000000;"><table border="0" width=93% cellspacing="0" cellpadding="0"> <tr>
<td width="100%" style="border-top: 1 solid #000000; border-bottom: 1 solid #000000" bgcolor="#F3F4F5" height="26"> <p align="left"> <b><font color="#003366">Navigation</font></b></p> </td> </tr> <tr>
<td width="100%">
</td> </tr> <tr>
<td width="100%"> <a href="">main page</a> </td> </tr> <tr>
<td width="100%"> <a href="?do=admin">admin</a> </td> </tr> <tr>
<td width="100%"> <a href="?id=$id">edit admin</a> </td> </tr> <tr>
<td width="100%"> <a href="?do=main">other link</a> </td> </tr> <tr>
<td width="100%"> <a href="">other link</a> </td> </tr> <tr>
<td width="100%">
</td> </tr> <tr>
<td width="100%" style="border-top: 1 solid #000000; border-bottom: 1 solid #000000" bgcolor="#F3F4F5" height="26"> <p align="left"> <font color="#003366"><b>Quick search</b></font></p> </td> </tr> <tr>
<td width="100%"> </td> </tr> <tr> <!-- The Quick Search Form --> <form method="post"> <td width="100%" align="center"> <br> <input type="text" name="story" size="14"> <input type="hidden" name="do" value="search"> </td> </form> <!-- End of the Search Form -->
</tr> <tr>
<td width="100%">
</td> </tr> <tr>
<td width="100%" style="border-top: 1 solid #000000; border-bottom: 1 solid #000000" bgcolor="#F3F4F5" height="26"> <p align="left"> <b><font color="#003366">banners/sponsors</font></b></p> </td> </tr> <center>
<tr>
<td width="100%">
</td> </tr> <tr>
<td width="100%"> put some banners here </td> </tr> <tr>
<td width="100%">
</td> </tr> <tr>
<td width="100%"> and another banners here </td> </tr> <tr>
<td width="100%">
</td> </tr> <tr>
<td width="100%" style="border-top: 1 solid #000000; border-bottom: 1 solid #000000" bgcolor="#F3F4F5" height="26"> <p align="left"> <font color="#003366"><b>Friends</b></font></p> </td> </tr> <tr>
<td width="100%">
</td> </tr> <tr>
<td width="100%">
</td> </tr> <tr>
<td width="100%"> <a href="http://news.google.com" target="_blank">Google News</a> </td> </tr> <tr>
<td width="100%"> <a href="http://mozilla.org" target="_blank">Mozilla.org</a> </td> </tr> </table>
<p align="center"><br><br> <br> <br> <br> </center> </td> <td width="520" valign="top" align="center">
<table border="0" width="453" cellspacing="1" cellpadding="3"> <tr> <td width="441"> <?PHP
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Here we decide what page to include ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
if($_POST['do'] == "search" or $_GET['dosearch'] == "yes"){ $subaction = "search"; $dosearch = "yes"; include("./search.php"); } elseif($_GET['do'] == "admin"){ include("./admin.php"); } elseif($_POST['do'] == "admin" || $_POST['&id'] == '$id') { include("./edit.admin.php"); } //tryed.. but dont work =D elseif($_POST['do'] == "admin") { include("./admin.php"); }
?> </td> </tr> </table>
</td> </tr> </table> </td> </tr>
</table><br><br><center> <table border=0 width=700 style="border-top: 1px dotted #000000;"> <tr><td> <p align="center">put your footer and copyright here
</td></tr></table> </body> </html> well basicly what i wonder here is if this is a good way..  it works perfectly... well another thing is.. it works with like do=asd but how can i do . do=asd&id=1231&google=123 if its possible that is.. as u see i tryed.. ;O
Reply
jlhaslip
Dec 24 2007, 03:01 AM
HA!... I thought the code looked familiar... http://annex.trap17.com/scripts/targetframe/Let me know if you want a copy of the script or Template. BH and I worked on that some time ago. We have a w3c valid div/css based version on the Annex site that does an Image swap based on the menu selection. To answer your question about using several values in the Query string, handle the first element and then the second gets checked based on the first value, etc. essentially, you need to have nested if statement blocks. CODE if ( do == admin) { // first if block starts here if ( add ) { ... add an id here ... } if ( edit ) { ... find the id number and edit it here... } if (delete ) { ... delete the id here ... } } // first if block ends here Hope this helps.
Reply
coldasice
Dec 24 2007, 03:40 AM
QUOTE(jlhaslip @ Dec 24 2007, 04:01 AM)  HA!... I thought the code looked familiar... http://annex.trap17.com/scripts/targetframe/Let me know if you want a copy of the script or Template. BH and I worked on that some time ago. We have a w3c valid div/css based version on the Annex site that does an Image swap based on the menu selection. To answer your question about using several values in the Query string, handle the first element and then the second gets checked based on the first value, etc. essentially, you need to have nested if statement blocks. CODE if ( do == admin) { // first if block starts here if ( add ) { ... add an id here ... } if ( edit ) { ... find the id number and edit it here... } if (delete ) { ... delete the id here ... } } // first if block ends here Hope this helps. hmm.. didnt quite understand  so u say if i do somthing like this`? CODE elseif($_POST['do'] == "admin") { elseif ($_POST['&id'] == '$id'){include("./edit.admin.php");} } it will enter edit.admin.php with these tags? do=admin&id=1 ? btw i guess u know where i found this.. can this be done inside the edit.admin.php or a function? i just thought it way of doing this was awsome.. the other ones i just get blank side of.. nvm this.. just slipped.. <- delete 
Reply
jlhaslip
Dec 24 2007, 03:50 AM
CODE elseif($_POST['do'] == "admin") { elseif ($_POST['&id'] == '$id'){include("./edit.admin.php");} } you need to complete one 'if' before the 'elseif'. My code code have been done differently using elseif's: CODE if ( do == admin) { // first if block starts here if ( add ) { ... add an id here ... } elseif ( edit ) { ... find the id number and edit it here... } elseif (delete ) { ... delete the id here ... } } // first if block ends here
Reply
coldasice
Dec 24 2007, 04:20 AM
QUOTE(jlhaslip @ Dec 24 2007, 04:50 AM)  CODE elseif($_POST['do'] == "admin") { elseif ($_POST['&id'] == '$id'){include("./edit.admin.php");} } you need to complete one 'if' before the 'elseif'. My code code have been done differently using elseif's: CODE if ( do == admin) { // first if block starts here if ( add ) { ... add an id here ... } elseif ( edit ) { ... find the id number and edit it here... } elseif (delete ) { ... delete the id here ... } } // first if block ends here ARG!!! still dont get it.... can u post result.. on that one.. maby that clears it.. maby fill in the id.. -.- sorry im at a total stop -.-
Reply
delivi
Dec 24 2007, 08:35 AM
the usage of TABLE for page layout is now not a standard. avaoid using tables and use only divs and add the style sheets in a seperate CSS file.
Reply
coldasice
Dec 24 2007, 12:55 PM
QUOTE(delivi @ Dec 24 2007, 09:35 AM)  the usage of TABLE for page layout is now not a standard. avaoid using tables and use only divs and add the style sheets in a seperate CSS file. yeah i guessed so.... -.- but its the function not the layout... i have another look now that im awake =D
Reply
jlhaslip
Dec 24 2007, 02:56 PM
A Table-less version of this script is available at the Trap17 Annex. See the link in the pink bar above the Shoutbox. Select Annex > Scripts > Targetframes for the Demo. or http://annex.trap17.com/scripts/targetframe/Source code for the div-based layout is found at : http://annex.trap17.com/scripts/targetframe/index.phpsWhen there are multiple parts in the Query string, such as "?type=admin&act=edit&id=1234", the value of id is frequently used inside the php script as a value for data retrieved from a database, so you would not need to 'handle' the id = in the logic flow of the script. Using the script logic I wrote above, I will demonstrate the use of a data value here: CODE if ( do == admin) { // first if block starts here if ( add ) { ... add an id here ... ... present a form for inputting a new member here ... complete with the mysql code to insert the member into the Database
} elseif ( edit ) { ... find the id number and edit it here... ... present a form here for editting a member's information ... and then update the Database with the information
} elseif (delete ) { ... delete the id here ... ... using a mysql query, find the member with id = 1234 and delete the member's information
} } // first if block ends here As you can see, not everything in the query string affects the Logical flow of the script. in this example, id is a value for retrieving information from the Database. Is that like what you plan on doing? This is a good example of 'dynamic' web site scripting. Instead of checking each and every value so you match an id, use the database features to write one set of scrpting code to perform a task based on the value passed in the query string. You do not need to write a code snippet for each id = value. Use the value to change the database. Hope this helps. Incidently, the above code will not run properly. It is called 'pseudo-code' and is used to represent the logic flow of a script/program only. the full scripting would need to be inserted in the correct places, etcetera. All the php and mysql is missing, but the pseudo-code explains what needs to be done at various spots. It is used to define a solution before the coding starts in order that you have an understanding of the solution and the methods to solve them.
Reply
coldasice
Dec 24 2007, 03:58 PM
QUOTE(jlhaslip @ Dec 24 2007, 03:56 PM)  A Table-less version of this script is available at the Trap17 Annex. See the link in the pink bar above the Shoutbox. Select Annex > Scripts > Targetframes for the Demo. or http://annex.trap17.com/scripts/targetframe/Source code for the div-based layout is found at : http://annex.trap17.com/scripts/targetframe/index.phpsi think u all misunderstand me... i dont care about layout...... i care about code... jlhaslip.. i dont understand yours... basicly this template comes from cutenews... and when i press a link.. it uses template.. and get all links inside.. the .. like when i press news... it goes template.com/index.php?do=news?id=12&mod=edit.. for example :=) <- this will show in adress bar and when it does it access page news with id2 and in edit mode =) <- example... and all that happens in index template.. lets go over this again.... what i want to do when do=admin is show feks the admin.php and when it shows do=admin&mode=edit&id=1 it shows the edit.admin.php where the user is id 1 think i formuled it better=? and i dont know if this is written in the template.. or in the edit.admin.php =?
Reply
truefusion
Dec 25 2007, 03:09 PM
QUOTE(coldasice @ Dec 24 2007, 10:58 AM)  what i want to do when do=admin is show feks the admin.php
and when it shows do=admin&mode=edit&id=1 it shows the edit.admin.php where the user is id 1 The code i will show you is similar to what jlhaslip has been showing you this whole time: CODE <?php
$do = $_GET['do']; $mode = $_GET['mode']; $id = $_GET['id'];
if ($do == "admin"){ // if do=admin, do...
if ($mode == "edit"){ // if mode=edit, do...
if ($id == "1"){ include "edit.admin.php"; } else { // do whatever... }
} else if ($mode == "delete"){ // if mode=delete, do...
if ($id == "1"){ include "delete.admin.php"; } else { // do whatever... }
} else if ($mode == "add"){ // if mode=add, do ...
if ($id == "1"){ include "add.admin.php"; } else { // do whatever... }
} else { // if there is no mode set or if it is set with an "unknown" value, do...
include "admin.php";
}
}
?> Do you understand how it works now? Note: the code above has not been tested, but should still work.
Reply
coldasice
Jan 5 2008, 10:09 PM
need some waited many days be4 replay  help?
Reply
coldasice
Dec 27 2007, 02:31 AM
QUOTE(truefusion @ Dec 27 2007, 12:30 AM)  Going with the file names you have provided in this topic, it would go in admin.php, since edit.admin.php will be included. hmmmm... strange.. when i put this in my admin.php... it dosnt work.. but when i put it in a include file it works.. O.o like CODE $do = $_GET['do']; $mode = $_GET['mode']; $id3 = $_GET['id'];
if ($do == "admin"){ // if do=admin, do...
if ($mode == "edit"){ // if mode=edit, do...
if ($id3 == "3"){ include "edit.admin.php"; } else { include ('admin.php');
} } }
and put it in.. include.edit.php and do like in admin.php i do include ('include.edit.php') then i just refreseh admin.php and add the include in top.. ;=) it basicly works... but not the way its suppost when i use it as an include -.- .. but when i add the pure code.. in to admin.php it dont work at all  (( <--- scratch that.. it works.. seems like it works =D.. btw if i put a hidden field or two in the form.... in admin.. can i then use that instead of those ifs? question 2. CODE if($subaction == "new"){ echoheader("options", "New Template");
echo"<form method=post action=\"$PHP_SELF\"><table border=0 cellpading=0 cellspacing=0 width=100% height=100%><tr><td >Create new template based on: <select name=base_template>"; foreach($templates_list as $single_template){ echo "<option value=\"$single_template\">$single_template</option>"; } echo '</select> with name <input type=text name=template_name> <input type=submit value="Create Template"> <input type=hidden name=mod value=options> <input type=hidden name=action value=templates> <input type=hidden name=subaction value=donew> </td></tr></table></form>'; echofooter(); exit; } /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Do Create the new template ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ if($subaction == "donew"){ if(!eregi("^[a-z0-9_-]+$", $template_name)){ msg("error", "Error", "The name of the template must be only with letters and numbers", "$PHP_SELF?mod=options&subaction=new&action=templates"); } if(file_exists("./data/${template_name}.tpl")){ msg("error", "Error", "Template with this name already exists", "$PHP_SELF?mod=options&subaction=new&action=templates"); }
if($base_template != ""){ $base_file = "./data/${base_template}.tpl"; } else{ $base_file = "./data/Default.tpl"; }
if (!copy($base_file, "./data/${template_name}.tpl")) { msg("error", "Error", "Can not copy file $base_file to ./data/ folder with name ${template_name}.tpl"); } @chmod("./data/${template_name}.tpl", 0777);
msg("info", "Template Created", "A new template was created with name <b>${template_name}</b><br>", "$PHP_SELF?mod=options&action=templates"); } here i noticed.. these <input type=hidden name=subaction value=donew> if($subaction == "donew") so do these 2 have any thing in common? but why is name $subaction?.. and why cant i find any $subaction =.. only $subaction ==.. 
Reply
truefusion
Dec 26 2007, 11:30 PM
QUOTE(coldasice @ Dec 26 2007, 05:43 PM)  but just wondering where to place this?????
like in my edit.. or just in my "template"? Going with the file names you have provided in this topic, it would go in admin.php, since edit.admin.php will be included.
Reply
Recent Queries:--
weight template.com - 802.19 hr back. (1)
Similar Topics
Keywords : , php, diffrent, type, template, id, includes,
- [request] Runescape Theme Web Template
(2)
Error Installing Template In Joomla! 1.5.7
(0) Has anyone ever tried to install a template and was given the following error? QUOTE
JFTP::mkdir: Bad response JFTP::chmod: Bad response Template Install: Failed to create directory.
"/home/vol1/byethost10.com/b10_2413307/htdocs/templates/go_vista_plain" I got the same error
while trying to install a template that I was successfully installing on my localhost version of the
site. Note: The site is hosted by Byethost not Trap17.....
Flex Error #1034: Type Coercion Failed: Cannot Convert Mx.managers
(1) Hi Boosters am created below flex module and then include this module to one mxml application .
after that i run that mxml file , its showing combobox successfully. But if i click that combobox
then , following error displayed. anyone know the solution, pls post it. CODE <!--
test.mxml --> <mx:Module
xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
<mx:ComboBox x="199" y="80" width="140">
<mx:dataProvider> <mx:Array> ....
Shadow_x21 Tutorial Includes: Remote Shutdown
and Local Shutdown (7) Shadow_x21 Tutorial : Remote and Local Shutdowns Shadow_x21 To Remote Shutdown A Computer.
Used to shutdown a computer on the same network. Like at school open notepad or a simple text
editor( not microsoft word) or you can use the command prompt type @echo off cls shutdown -m
\\Computername -s -t 120 -c "Comment Goes Here" Explanation: @echo off : means that
the code you typed below @echo off will not be displayed to the user cls : will clear the
screen shutdown : represents shutdown.exe or the shutdown method -m : represents a rem....
Accidently Deleted Template.html
please somebody provide the original one (3) I recently signed for qupis account. When I uploaded all my files the site was not showing and was
still rediecting to template.html and so I deleted it. But now I can't access my website as it
is not considering other files like index.html, index.php for showing as default page. I now
understood unlike trap17, qupis displays ads and template.html is essential and should be used for
default page. NOW SOMEBODY PLEASE SEND ME ORIGINAL TEMPLATE.HTML. And then how to actually get my
index.php work. please help.....
Seeking Help With Javascript
Need help with drag and drop type script (1) What i want to make is a script that has a table, which is a menu for my site, and when you click
the top of the table you can drag it to another place in the page. This is the code: Test
run - Right click menu - ©Jack McCrea 2008 <script type="text/javascript"> function
coordinates(event) { if (event.button==2) { var x=event.x; var y=event.y;
document.getElementById("element").style.left=x; document.getElementById("element").style.top=y;
document.getElementById("element").style.visibility="visible"; var oldx=x; var oldy=y; } }
<script type="....
A Few Wrods With The Respectful Admins Of Www.qupis.com Free Hosting Service
This topic includes your opinions, critics, and suggestions to Qupis a (1) Dear Qupis admins, We have a few words to say tonight. Well, we own a small website for our chess
club hosted kindly by you which is: http://veins.qupis.com Everything is great and works fine but
a few problems still are in the air that we want to discuss them with you. *- You said in your
terms and conditions that "place no files to be downloaded from this site except for a few Kb"!
OK! We have some .xls Excel sheets which are over 300 KB and we want to put some chess e-books
for download there which will never exceed your designated space limitations. W....
Siri Template/design
Design with black, white and also some purple colours (5) Well I really need some views about this design or template. I am hoping that I will make the four
little icons as avatars for some sites - so they will change from time to time. Therefore they are
not really a part of the design. I struggled so much with the girls (Siri) hair because it was so
big and also a part of her head was not on the original image. The background is so strong and takes
a lot of "space" so I really can not do to much to the rest of it. The finishing result would just
look too cluttered and overdone. (I have forgotten to add a text effect some pl....
Installing Movable Type 4
(1) Anyone here has tried installing Movable Type 4 on trap 17? I need a deatailed explanation, thanks.....
Movable Type 4
Installing (0) Hi guys. I have a problem here installing Movable Type 4. Has anyone installed it on Trap 17 servers
before? I would need a detailed installation description, as I had many problems installing it here,
possibly due to the server behaviours at Trap 17. Thanks.....
Wordpress Vs Movable Type
(0) What do you generally think about Wordpress and Movable type as blogging platforms. With what
platform are you more comfortable with, which one has more options, which one is more newbie
friendly? I don't have experience with movable type, but wordpress.org is to me a much better
alternative (I use it on my self hosted blog on trap17). Tell me your experiences. /smile.gif"
style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif" /> Thanks.....
How To Change The Gradient Type And Make A Gradient On Adobe Photoshop Cs3
(1) How to change the Gradient type on Adobe Photoshop CS3 Open Adobe Photoshop CS3 On your current
piece of work or on a new blank canvas, select the area you would like to apply the gradient to.
Once you have the area selected you would like to work on, hover your curser over the Gradient Tool
button (Default Location: Left edge of the Program window, center of the tools menu). Apply pressure
to the mouse so you click the Gradient Tool Button. Once you have this Tool selected, you can
choose which gradient you would like to use. Choices : Linear Gradient (Defaul....
Canadian Dcma-type Bill Introduced
Canada's version of the Digital Millennium Copyright Act (1) Today on June 12, 2008, Industry Canada Minister Jim Prentice introduces the Canadian version of the
Digital Millennium Copyright Act. This means that Canada will also seek to prosecute and sue average
citizens through the monitoring of bit torrent and p2p sharing clients and tracking IP addresses
with fake trackers. In 1998, the Digital Millennium Copyright Act has be passed in the United
States, causing over tens of thousands of downloaders their lifetime's savings, due to the high
lawyer fees and outrageous fines. In an attempt to protect copyright holders, this....
Template Chooser?
(10) Hi, do you know any tutorials that is somehow is dedicated to creating kind of templates for your
web-site?! Let's say when a user goes to his or her profile there will a button which is
called "Choose Template", for instance, after that the templates of your web-site stored on your
server, will become active. This is the first point. The second thing, how can I make the
templates generally? With respect to font, alignments, buttons, other graphics or even hide some
buttons or functions of the web-site?....
Iso Graphic Designer For Website Template
Template + Icons = MONEY!!! (0) Im looking for a graphic designer for a site redo Ive got some ideas and i can send you over a
mockup (just lines and where stuff should be and what not). Heres a bit of info about what is going
on with this project. I'm currently (with the help of a few other people) working on a
php/mysql game for a large community (Pirate4x4) Right now the template for the game is in my
opinion horrible and hard to use. However its all we have to fit the theme of the site. What your
job would be to do is to match the template you would be making with the theme of the communiti....
Mime Type Trouble
(3) I have been trying to validate my site with xhtml 1.1 and I am supposed to serve it as an
application vs. text/html... 1. It recommends changing to .xml or .xhtml extension but when I do
this in my home folder it doesn't recognize the extension and calls is text/generic. 2. Yes, i
have added the mime type in apache, but I don't know why it doesn't recognize it?? It
recognized a pearl script I made. 3. I also tried adding a perl script to the top of my pages to
declare mime type but it doesn't seem to be working. How can I get cpanel to recognize these ....
Open Any Unknown File Type With Notepad
Make Notepad as default file opener (1) Open Any Unknown File with Notepad
************************************************************************ DISCLAIMER: The
following contains registry edits. If done improperly can cause strange behaviour, and at worst,
could even entirely corrupt your Windows Installation, requiring you to reinstall Windows. I cannot
be held for any damage you may cause to your system as a result of taking any action suggested in
the following article. ************************************************************************
Target OS: Windows XP Introduction....
Sharing Ports That Are Enabled?
Can you share ports that are enabled with a diffrent network? (1) Can you share ports that are enabled with a diffrent network? I saw a program that does it somewhere
on an advertisement. I can't remember what it was called. It costed about $69.99. Anyone
know what it is called? Or do anyone know how to change ports that a game accepts through? I want to
change the ports that the game called StarCraft (Port 6112) and change it to a diffrent port so that
I can create games and play it with my brother on the same network. It we play together while he
hosts the game we start lagging and it lags like $#@#. I can't stand t....
Joomla Template Maker
(7) Special Offer!!! Get The "Joomla Template Maker" plus instructional videos for Only
$4!! Plus For A Limited Time I Will Include "The Logic Of Joomla" eBook at NO extra
Charge. Come Visit For More Info http://pcfiend.com/joomla/ ....
Bloobs
Fun puzzle type shooting game (5) Anyone heard of Bloobs ? You shoot pieces called Bloobs to form 3 bloobs. Then it clears the
pieces. You do this until all bloobs clear off the screen. It is fun and mildly addictive. I am
writing a guide for this game, so people can become more aware of it and play better. /smile.gif"
style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif" /> Try it and see. NOTICE: The
page may not display properly in Opera. It will display in Avant Browser, Netscape, IE, Maxthon and
Mozilla/SeaMonkey.....
Trap17 Free Web Template Downloads
Trap 17 member contributions (10) Well, BuffaloHELP, here is my contribution. /tongue.gif" style="vertical-align:middle"
emoid=":P" border="0" alt="tongue.gif" /> Free template downloads. Albeit over 100 web
templates instead of one-at-a-time. I have started this thread for people to voluntarily add to.
OK, everybody, lets keep this thread alive and updated frequently. ....
Rpg Maker 2003
Does anyone use this or any other type of game maker? (7) Hi i just recently installed RPG Maker 2003 on my computer and it seems preety good so far of what
i've seen, I used RPG maker 95 a wile ago and found that anoying, frustrating and just plain
crap with basically no customization, But this one looks much better. Does anyone use this or any
sort of similar type of program?....
Rollercoaster Tycoon
Theme park type simulations (30) I've played this game it first came out, and also played the sequel and the add on packs with
scenarios and missions. In addition, I've also had played the game that started the theme park
simulations (Theme Park). Is there anyone else out there who loves this game as much as I do? Its
interesting to change the land and terrain around to get rides into interesting positions or have
Roller Coasters on a very HIGH steel/cement supports. Its so rewarding to watch a park that you
started grow from a small park to a bustling busy tourist attraction. Very addicti....
How Fast Can You Type The Alphabet?
Warning: addictive. (64) http://www.morpheme.co.uk/frenzy/ - This game is very addictive for me, but it is good practice
for knowing where all the letters are if you are not that great at typing. Also if you have a chance
check out the video section they have, there are 3 videos I think but the people are really fast at
typing the alphabet. - My record was 4.207 I could probaly get faster but I put alot of time doing
this nd dont want to get too addicted to it. - Post your times heres.....
Setting Processor Type
in the BIOS (4) I have a coputer about a year and half old, anyway last night I had to reset the BIOS due to some
unplesnentness, which I'm not willing to discuss. Anyway that went well however now the
computer thinks the process is AMD athalon XP 2500+ when it actualy is a 3200+, I know this for a
fact it is printed on the processor (I checked). Anyway when I was in the BIOS a wile ago I thought
I saw I clock setting option, anyway now I can't find it. Can anyone tell me where in the BIOS
these options should be. Some Specs: Board: nVidia-nForce2 Soltek BIOS: Phoenix Techno....
Fave Type Of Music?
Rap, rock, pop, country...? (28) What is your fave type of music? My fave is constantly changing, I was really into pop when I was
still a 'little kid' but I'm really getting into rock now. Anyway, I think that the type
of music someone likes can relate to how people act. If you look at people who really really like
Dance or Pop music they are completely different to people that really really like Rock and heavy
metal stuff. What do you think about that aswell?....
Whow to change template on php nuke
(4) Whow to change template on php nuke
Thanks....
Templates
download Nice Template (10) I Fint this Template for u /biggrin.gif' border='0' style='vertical-align:middle'
alt='biggrin.gif' /> http://xinfo.3dmaster.net.ru/templates/Tem...6471-SPK100.rar
http://xinfo.3dmaster.net.ru/templates/Tem...6417-SPK100.rar
http://xinfo.3dmaster.net.ru/templates/Tem...6221-SPK100.rar
http://xinfo.3dmaster.net.ru/templates/Tem...6370-SPK100.rar
http://xinfo.3dmaster.net.ru/templates/Tem...6419-SPK100.rar
http://xinfo.3dmaster.net.ru/templates/Tem...6446-SPK100.rar
http://xinfo.3dmaster.net.ru/templates/Tem...6207-SPK100.rar hihi I Find th....
How Many Songs Can You Type In 1 Minute?
how may songs you can type in 1 minute (10) How many songs can you write down in a reply in one minute? Do the test and write them down here:
Life For A Rent What You Waiting For? Boulevard Of Broken Dreams Uptown Girl American Idiot Lose
Yourself Without Me Just Lose It Like Toy Soldiers Roses Not really very good is it? But when I
rushed of time my mind goes blank. How many of you are like that. Now I'm going to vote in the
poll.....
Macromedia Flash
type in farsi language (1) hi for type the language farsi in flash you need a ipt 5 this is a symble font for farsi language
you can downlado it from : www.ipt5.com....
Looking for , php, diffrent, type, template, id, includes,
|
*RANDOM STUFF*
*SIMILAR VIDEOS*
Searching Video's for , php, diffrent, type, template, id, includes,
*MORE FROM TRAP17.COM*
|
advertisement
|
|