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
Latest Entries
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
Similar Topics
Keywords : , php, diffrent, type, template, id, includes,
- Canadian Dcma-type Bill Introduced
Canada's version of the Digital Millennium Copyright Act (1)
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 ....
Question About Php Includes
How would you include a frame AROUND the page? (17) I'm trying to make a layout for my website for the areas that aren't occupied by Wordpress,
and I want to use PHP includes to do it. So far, I know how to use tags, like this: CODE
<table> <?php include "sidebar.php" ?> </table> This is okay,
but I want to be able to include everything in one "container" file. Kind of like this: For every
HTML file that I include: CODE <html> <head> <?php include
"frame.php" ?> <title></title> </head> <body> <!....
Html/css Website Hosting Templates Request - You Will Be Paid Off
Website hosting template request (6) I am using cpanel and WHM, and i want a hosting template. Well i have dreamweaver and photoshop,
i have found pretty nice looking hosting templates, but what i want is a unique, original and
professional like ( http://www.resellerguide.com/resellerhosti...plate6/big.jpg) that template is
really neat, but since its open to public they could be like 20-50 people using it, and this type of
template is hard to customize , even with photoshop. So if someone could create something like this,
with the theme a little different , but i love his layout, instead of the nav and....
Smf: Template Parse Error
HELP ME!!! (7) QUOTE Template Parse Error! There was a problem loading the
/Themes/default/index.template.php template or language file. Please check the syntax and try again
- remember, single quotes (') often have to be escaped with a slash (\). To see more
specific error information from PHP, try accessing the file directly. You may want to try to
refresh this page or use the default theme. Parse error: syntax error, unexpected T_STRING,
expecting ',' or ';' in .../Themes/default/index.template.php on line 167
And here's line 166 QU....
Need A Phpbb3 Halo Template
(1) HI. Does anybody know of our have a Halo template for PHPBB3. Preferably a Halo 3 but i will take
any other halo game template.....
Open Any Unknown File Type With Notepad
Make Notepad as default file opener (0) 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....
My New Site Template
Heres a new template of mine done in photoshop (3) This is my new template I'm going to be using for my new site. It took me 3 days to do. I spend
day 1 drawing it up sorry I cannot upload my draft sketch as my scanner is not working. The next 2
days I spent drawing it up in photoshop. The colours are kinda generic I know but thats my style. I
cant seem to create anything other then grey toned things. I think adding some decay onto the panels
will give it some depth something my style of drawing lacks. The panels - I like as many panels as
I can so I went with the 3 column layout and extra 2 side header panels for ....
Free Pixel Template
Use this all you want! (0) Feel free to usethis all you want (never mind the copyright info and stuff in the download, I
don't care anymore): Preview: http://free.hostultra.com/~2kart/free/free...2007/index.html
Download: http://free.hostultra.com/~2kart/free/free...ember102007.zip Enjoy and use how ever
you want.... ....
Question About Changing Hosting Type.
(5) I was wondering if it is possible to do the following thing with my trap17 account. Since school
has come by again I keep finding it harder and harder to keep my credits up because a lot of nights
I don't even get to look at the computer. I also have noticed that I am not really using trap17
for hosting a lot of websites but more files and such not. I was wondering if I am able to
downgrade my account for the time being to the account with the "One text ad" version. But a
question on that, that I have is: if I host an image with my account that way and put the ima....
Php Echo
Learn what the echo can do for you. Includes basic echo and variable p (10) PHP Echo Description The echo() command has one purpose, displaying whatever you put in between the
brackets. Learn to use it to your advantage. Try It Out There is your echo command. For now,
it does nothing. It has no value to display. Outcome This is my text. Now this echo command
has a value to display. Whatever you replace "This is my text." with will be displayed. Alright,
lets move onto the next step. This time, we will include a variable in the echo command.
$var = "This is a variable"; echo "$var. Congratualations, you just parsed a....
Simple Portfolio Template
grey-green- (5) Well, it`s been a while since I last time posted on T17 and I really missed this forum. Well, I
started taking lessons on webdesign in my school. It`s pretty hard because the professor is
pretty dumb /ohmy.gif" style="vertical-align:middle" emoid=":o" border="0" alt="ohmy.gif" /> , and
he can`t solve simple image alignment problem with css /laugh.gif"
style="vertical-align:middle" emoid=":lol:" border="0" alt="laugh.gif" /> , so i have to learn
almost everything on my own. /mad.gif" style="vertical-align:middle" emoid=":angry:" border="0"
alt="mad.gif" /> ....
Another Question On Mysql Table Data Type
text field for lots of text. (1) In my MySQL table I would like to use one text field which can contain lots of text. What I want to
use it for is for student records, and I want to be able to add to it without destroying what is
already there. I want the field to contain something like: ****03/11/2007**** Chopin prelude No 9:
small problem bars 12-15. Advice given on how to practice. ****10/11/2007**** Problem in Prelude
overcome, piece successfully completed. New piece set: Beethoven Sonata No 1, movement 1. etc. This
is of course just an example, but that is how I want to set up my student records....
Which Data Type To Use In Mysql Table
Using a 5 character number (4) If I wanted to use an ID field which automatically increments when data are addad, but displays the
ID as a 5 figure number, which data type would I have to use? I would want a type that assigns a
number to a record in the format "00001", "00002", etc. However, when I use "int" as datatype, it
only displays th field contents as "1", "2" etc. So, which data type could do the job for me? i do
not need a decimal point or anything, just an id that displays in 5 figures, including the leading
zeros. Thanks in advance.....
My First Free Template
(16) I've released my first free web template you can download it from my site at
http://www.xatre.info/designs.html this template is based on the Vista Aero theme. Please download
and tryout this template and post any suggestions comments. This template is released under GPL.
Template includes PSDs and fonts used. /smile.gif" style="vertical-align:middle" emoid=":)"
border="0" alt="smile.gif" /> ....
Premium Site Template For Free
Get Premium Site Template For Free (8) This is an opertunity to own a premium site template for your sites. All templates are available on:
WebMasters-Forums.Com You just register and make some post on there. The
premium templates are mailed to your email address. Some of those template are costs more than
40$. Register there and enjoy. More templates are available on the future according to the
public demand.....
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?....
[photoshop]grunge Abstract Sig ~ Samma
Includes Multi Color Method (9) Im not sure if this has been done before... I havent seen a grunge abstract tut before, but anyways
here it is /tongue.gif' border='0' style='vertical-align:middle' alt='tongue.gif' /> Outcome:
1. Fill the canvas with black, and brush with white using a grunge brush. After you have
completely filled the whole layer with the grunge brush, go to Image > Adjustments > Auto Contrast,
then go to Filter > Sharpen > Sharpen Edges, then finaly go to Edit > Fade Sharpen Edges and do an
opacity of 50%. Make a new layer. Repeat Step 1. another 2 times using different gru....
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. (63) 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.....
Fave Type Of Music?
Rap, rock, pop, country...? (26) 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,
|
|
Searching Video's for , php, diffrent, type, template, id, includes,
|
advertisement
|
|