Search results

  1. Lack of C#

    Thanks for the share Dice, This is a great idea and I know it will help quite a few people !
  2. [PHP] Hello, World!

    Lets not forget about the print <3 <?php print("Hello"); ?>
  3. DownForEveryone Quick Script

    Did you make this?
  4. [PHP] Basic Variables

    PHP has it's easy things as well as harder things just as every language does.
  5. PHP tag

    Please make the background of it white... it's hard to read ie) <?php echo "Hello"; ?>
  6. Basic form in PHP

    I edited the thread title for you, forum->form. I wanted to add on to your code so... For the record I would have done this pretty different but I am just fixing your code. It would never work. Index.php <html> <body> <Form action='login.php' method='POST'>...
  7. [PHP] Simple IP Ban

    I was hoping someone would pick that up....
  8. [PHP] QnA

    Well title says it all, if you need help with anything in PHP post it here, I'll do my best to help you.
  9. Basic form in PHP

    RE: Basic forum in PHP I agree there are a lot of flaws, but it's decent to being with.
  10. [PHP] Basic IP log

    No problem, you can check if they are already logged with a simple file search function, but yeah you're welcome :)
  11. Hello

    Mental <33333 Welcome
  12. [PHP] Basic IP log

    I have a bunch of scripts but they aren't user friendly....
  13. [PHP] Basic IP log

    This will log each ip into a text file, does not check for duplicates. <?php $ip = $_SERVER['REMOTE_ADDR']; $d = date("d-m-y / H:i:s"); $log = $d . " -- " . $ip ."<br />"; $fopen = fopen("logs.html", "a"); fwrite($fopen, $log); fclose($fopen); ?>
  14. [PHP] Simple IP Ban

    RE: Simple IP Ban Just do something like... <?php $ip[] = "127.0.0.1"; $ip[] = ""; foreach($ip as $ips){ if(in_array($_SERVER['REMOTE_ADDR'], $ips)) die("banned"); } ?>
  15. Basic form in PHP

    RE: Basic forum in PHP Isn't it best to do <?php session_start() if ($_SESSION['username']) echo "Welcome, ".$_SESSION['username']."!;<br><a href='logout.php'></a>"; else die("You must be logged in!"); ?> AS <?php session_start() if (isset($_SESSION['username'])) echo "Welcome...
  16. [PHP] Basic Variables

    <?php $myName = "prodigy"; // This declares my name AS prodigy echo "My name is ".$myName."!"; //outputs My name is prodigy! ?>
Back
Top