-
Content Count
102 -
Joined
-
Last visited
Everything posted by mahirharoon
-
Five Of The Dirtiest Malware Tricks
mahirharoon replied to Saint_Michael's topic in Security issues & Exploits
firefox is slow(note : this may be my last post see my profile comment for more info) -
Very Good Trap17 Best free hosting service on internet
mahirharoon replied to Jefferson Silva's topic in General Discussion
trap 17is soo popular -
How To Make A Web Browser Visual Basic 6
mahirharoon replied to rejected's topic in General Discussion
#but you should do this before downloading firefox tarballlsadvertise mozilla firefox for free or money through google adwords //(i always call it badword and nonsense for adsense)then mozilla becomes happyand if you can help firefox by sharing ideas and code on there forumdo itagain then mozilla becomes happy -
live.com should be changed to lie.com or welie.com or liers.comand microsoft to liecrosoft
-
bush and the america army are doing the same thing (killing people for nothing al Qaida said that it did not do itmaybe the current president did it because he benefits whith it
-
now hackers could be high speed(download the victim's pc in 1 second)
-
Why Does The World Hate America? Is america hated?
mahirharoon replied to iGuest's topic in General Discussion
america breaks world peace including iraqbut noody hates the full america for itbut just curses bush -
Install Two Anti-virus Software In 1 System Is it ok?
mahirharoon replied to Dragonfly's topic in Security issues & Exploits
some times two antiviruses will conflict -
Sony Virus sony xcp software on cds
mahirharoon replied to niloc's topic in Security issues & Exploits
the same as microsoft did in xp sp2 (little differance) -
keep in mind thatviruses does not affect linux and macsthe msn function to send files is completely uselesswe could upload it to a filehost and provide a link to the friend
-
that is why some voice recorders begginers write won't workbecause some begginners set it to write the recorded file into memory instead of temporary folder
-
airship or a aeroplane?and we only realized it was flying by looking a the shadowmaybe thats hinderburg airship?(but it is australia)
-
how could anybody see american flag waving as there is no air ??
-
3d buildings feature is only for U.S.A
-
when we go to google.co.uk it goes to a 404 page or a search engine (browser default) seee http://www.webpronews.com/
-
File Checker-how To Check File Whith Html Through Html?
mahirharoon replied to mahirharoon's topic in Programming
thanks alex the programmer i used it for my project <?php$filename=$_POST['check'];if (@file_exists($filename)) { echo "The file $filename exists";} else { echo "The file $filename does not exist , and the non existing file is created"; fopen("$filename", "a+");}?> <form method="post"><input name="check"><input type="submit" /></form>now it checks whether it i there and makes one if not existing -
but other users can steal the open id very easily.drupal adds open id in 6.0 so websites using it will have the thiefs get on admin's account.and wordpress tooo with openid plugin.
-
i found and pascal server page forum http://forums.xisto.com/no_longer_exists/ i found it in http://forums.xisto.com/no_longer_exists/ z505 offers psp support http://forums.xisto.com/no_longer_exists/ And here are some free hosts just to test out your psp programs... Note: do not use UPX to compress your programs on these free servers.. on some servers, UPX does not work. http://forums.xisto.com/no_longer_exists/ http://forums.xisto.com/no_longer_exists/
-
Canadian Shocked To Get $85,000 Phone Bill
mahirharoon replied to Saint_Michael's topic in Mobile Phones
how can 4700*2$=9400 !!in qt they provide free internet for moblile because of beta service -
sorry for double post i also wrote the code for opening it and creating it if not extisting <?php$handle = fopen("index.php", "a+");?>EDIT:the main problem is it will be inserted after define tag (<?php?>)
-
i wrote the code for writing into the switch <?php$filename = 'index.php';if (is_writable($filename)) { echo 'The file is writable';} else { echo 'The file is not writable';}if (is_writable($filename)) {$filename = 'index.php';$somecontent = "the code.....";// Let's make sure the file exists and is writable first.if (is_writable($filename)) { if (!$handle = fopen($filename, 'a')) { echo "Cannot open file ($filename)"; exit; } // Write $somecontent to our opened file. if (fwrite($handle, $somecontent) === FALSE) { echo "Cannot write to file ($filename)"; exit; } echo "\n Success, wrote ($somecontent) to file ($filename)"; fclose($handle);} else { echo "\n The file $filename is not writable";}; }?>