-
Content Count
102 -
Joined
-
Last visited
Everything posted by mahirharoon
-
Trap17 Community Building Project! make your contribution...
mahirharoon replied to cragllo's topic in General Discussion
the things on the glass is a part of ed harvey effects in paint.net (ed harvey is a plugin magician) -
Future Splash Animator Do You Know it
mahirharoon replied to delivi's topic in Science and Technology
it had been costing atleast 2 millions -
this is my first topic(not post) i had posted it in another place <?php $variable = $_GET['id'];switch($variable) {default: include('home.php'); break;case "guestbook": include('guestbook.php'); break;}?>instructions: case "guestbook": include([u]'guestbook.php'[/u]); break; = change - guestbook.php to the page url forum - change to your id (underlined) which will come in index.php?id=[u]forum[/u] $variable = $_GET['id']; -change id to what you want here (underlined) index.php?id=123
-
I Am A Nub At This so lets see where i can learn php
mahirharoon replied to DemonReaper's topic in Programming
there is no need for editing phpit is doable in the cmsi learnt php from php manual (mostly)and html lite (little) -
Has Anyone Got Paid Here! www.1-800-mail.com
mahirharoon replied to hlktar's topic in Business Forum
rally scam (why they are taing credit card for free membership) -
no problem with ie6 when checked
-
Trap17 Community Building Project! make your contribution...
mahirharoon replied to cragllo's topic in General Discussion
hello i need to buy a lot but its four towers name mt towers the towers i made 2d because you said only 2d is allowed i am not good in 2d graphics but good in 3d how i made: i opened paint.net then i thought of 3d moddeling my system had a imedieate restart i lost my work i went to trap 17 is saw this cool thing but dissapointed when i knew it was 2d what's the next i opened paint.net and made some 3d like 2d moddeling at last i took the pic of flat and pasted it 4 times and drew a box and wrote mt flat then drew linking lines -
What Is The Best Screen Recorder? The search continues...
mahirharoon replied to bthaxor's topic in Software
camtasia studio is best for meunfortunately it is not free -
Reflecting Text Tutorial Adobe Photoshop CS2
mahirharoon replied to KenshinKRP's topic in General Discussion
this is not a correct reflection to get the coorectcopy the layer,flip it and add a gradient overlay - background colour to transparent -
i made a air program in aptana
-
Do You Know When Mandriva Linux 2008 Will Be Released?
mahirharoon replied to shiyutang's topic in Operating Systems
surely 2008 -
vista is falling from the rock[notice]vista is falling from a canyon not a rock [/notice]they relaesed a beta os
-
my comments so syncing viruses oh showing off it means microsoft will never provide support confidence that viruses will be transfered do they have common sense ,we couldn't take the file (or data) in our hands or pockets oh even in graves then how much 200,500.50.700.100000000000,0 , could we afford it project passwords and vista will break it
-
i did not understant what you are saying but i will provide some assistance1.on boot loading-the boot.ini has problems2.on account login-logon.exe has been modified3.after login-problems in explorer.exe4.if you can access the hard drive from other pc (insert it)enable hidden file open boot.ini and choose login screen instead of welcome screen
-
Firefox V/s Internet Explorer For Web Design
mahirharoon replied to saqib431's topic in Websites and Web Designing
best way is to make firefox code and ie code then with js make them compactible by using the code : if(navigator.userAgent.indexOf("Firefox") != -1){var nxturl = "browserfx.html";}else if (navigator.appVersion.indexOf("MSIE") != -1){var nxturl = "browserie.html";}else {var nxturl = "browsidmi.html";}document.location = nxturl; browserie.html is ie compactible page browserfx .htmlis firefox compactible page browseridmi.html is for the rest Notice from rvalkass: Added CODE tags. -
the great thing is it is made in python and compiled with py2exe
-
Dealing With Links Like ?id=123 pls help in a small issue
mahirharoon replied to apple's topic in Programming
this is the correct code <?php $variable = $_GET['id'];switch($variable) {default: include('home.php'); break;case "forum": include('forum.php'); break;}?>instructions: case "forum": include([u]'forum.php'[/u]); break; = change - forum.php to the url forum - change to your id (underlined) which will come in index.php?id=[u]forum[/u] $variable = $_GET['id']; -change id to what you want here (underlined) index.php?id=123