Jump to content

tarun

Members
  • Posts

    321
  • Joined

  • Last visited

    Never

Posts posted by tarun

  1. Snazzzzy ;)

     

    This Design Is Generally Excellent

     

     

    Butt..  :-\

     

    Apart From The Stuff Mentioned Above The Only Thing I Dont Like Is

    The Login Form (But That Is Just My PERSONAL Opinion).

     

    Maybe Trying Adding Some Style To The Text Fields & Login Button.

  2. Hmmm.

    The Website Will Not Load Now..  =S

     

    Firefox:

    "The connection has timed out

    The server at www.nemesiswar.net is taking too long to respond."

     

    IE:

    "Internet Explorer cannot display the webpage"

     

    I Also Tried Pinging The Website But It Returned "Request timed out." Every Time.

  3. Right, I have this 100% height layout but it isn't the whole height of the area avaiable its a maybe few pixel over. I have a included a 2 screen shots one is a real screen shot of what it looks like. The other is an edited version, which is what i want it to look like. Both layouts appear the same in IE an Firefox.

     

    Screenshots:

    Real screenshot of what I have now.

    Edited screenshot of what I aim to have/want.

     

    I have also provided the HTML Code

    <?xml version="1.0" encoding="UTF-8"?> 
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" 
    "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> 
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" > 
    <head> 
    <title>...</title> 
    <style type="text/css" media="screen"> 
    body { 
    margin: 0; 
    padding: 0; 
    height: 100%;
    } 
    #left { 
    position: absolute;
    left: 0;
    top: 0;
    padding: 0;
    width: 200px;
    height: 100%;
    color: #333;
    background: #eaeaea;
    border: 1px solid #333;
    }
    
    #content {
    position: absolute;
    left: 200px;
    top: 0;
    right: 0;
    padding: 0;
    height: 100%;
    color: #333;
    background: #ffc;
    border: 1px solid #333;
    overflow: scroll;
    }
    
    #left p {
    padding: 10px;
    }
    
    #content p {
    padding: 10px;
    }
    </style> 
    </head> 
    
    <body> 
    <div id="left"> 
    <p class="top">aopjfshkmal;hba ha</p> 
    
    <p>aharijkuyjrawtrwh</p> 
    
    <p>auetbvdfhiti7okl,hevd</p> 
    </div> 
    
    <div id="content"> 
    <p>Tsetukuyskpf;ps'ra3w'lmrtefkdylatsururtyryrt.fok./owe sjheak, asiuflajrlk eaiojra.r arsfs eatheakra gaiojtnar atkajehtakn.trna</p> 
    </div>
    </body> 
    </html>

  4. Well I would like to create a 100% width and 100% height layout

    but im unsure as to how to do it.

     

    any ideas?

     

     

    I have also got a screen shot of the kind of thing im looking for.

    remember id like to have it Cross Browser compatible if possible ;)

     

     


    Low Quality - 115.29 KB (0.11 MB)

     

    layoutlowpz4.th.jpg

    Click To Enlarge


    High Quality - 333.79 KB (0.33 MB)

     

    layouthighbf5.th.jpg

    Click To Enlarge


     

     

     

     

     

    Thnx so much ;D ;D ;D

  5. Im working on some code which searches a line of a text file to see if it matches a GET variable

    but only the last line can be searched

     

    Filename: test.txt

    Tarun
    Patel
    AnotherEg.
    Test
    !!
    Random

     

    Filename: readline.php

    <?php
    $path = "test.txt";
    $lines = file($path);
    $test = $_GET["test"];
    foreach($lines as $num => $val) {
         if ($val == $test) {
              echo ">> ";
         }
         echo $lines[$num];
         echo "<BR>\n";
    }
    ?>

     

    The if statement only works for the last line of "test.txt"

    this is because it reads the line and the break after it

    Eg. Line 1 would be:

    "Tarun

    "

    Line 2:

    "Patel

    "

    ETC...

    But the last line would be:

    "Random"

     

    How do I cut out the break so it only reads: "Tarun" instead of "Tarun

    "

  6. Well I Can Answer The 3rd

     

    <?php
    $getlink = $_GET["link"];
    
    if ($getlink == "page1") {
    echo "Hello This Is Page 1";
    }
    elseif ($getlink == "page2") {
    echo "Welcome To Page 2";
    }
    else {
    echo "Ooops! Page Not Found";
    }
    ?>

    Try That And Just Keep Playing Around With It ;D

  7. I Found This Code Which Simluates A Crontab

     

    Description:

    If you want to simulate a crontask you must call this script once and it will keep running

    forever (during server uptime) in the background while "doing something"

    every specified seconds (= $interval):

    <?php
    ignore_user_abort(); // run script in background
    set_time_limit(0); // run script forever
    $interval=60*15; // do every 15 minutes...
    do{
       // add the script that has to be ran every 15 minutes here
       // ...
       sleep($interval); // wait 15 minutes
    }while(true);
    ?> 

  8. <?php
    $menu["Home"] = "/index.php";
         $submenu["Home"]["About"] = "/about.php";
    
    $menu["Contact Us"] = "/contactus.php";
         $submenu["Contact Us"]["Live Chat"] = "/chat/index.php";
              $submenu["Contact Us"]["Live Chat"]["Live Help"] = "/chat/connected.php";
         $submenu["Contact Us"]["Email"] = "/emailform.php";
    
    $menu["Members"] = "/members/index.php";
         $submenu["Members"]["Profile"] = "/members/profiles/index.php";
              $submenu["Members"]["Profile"]["View Profile"] = "/members/profiles/viewprofile.php";
              $submenu["Members"]["Profile"]["View All Profiles"] = "/members/profiles/viewall.php";
              $submenu["Members"]["Profile"]["Edit Profile"] = "/members/profiles/edit.php";
         $submenu["Members"]["Check Messages"] = "/members/mail.php";
         $submenu["Members"]["Send A Message"] = "/members/send.php";
         $submenu["Members"]["Edit Profile"] = "/members/editprofile.php";
    
    ?>

    Well... Thats My Multi Dimensional Array

    How Would I Go About Making A Breadcrumb Menu From It

     

    In Case You Didn't No A Breadcrumb Menus Are Like This:

    [iurl=#]Members[/iurl] / [iurl=#]Profile[/iurl] / [iurl=#]Edit Profile[/iurl]

  9.  

     

     

    You No What To Do... Any Feedback (Wether Good Or Bad) Is Appreciated

     

     

     

     


    Low Quality - 71.63 KB (0.56 MB)

    tpatelscreenshotlowqc4.th.jpg

    Click To Enlarge


    High Quality - 210.21 KB (1.64 MB)

    tpatelscreenshotnz6.th.jpg

    Click To Enlarge


    NOTE:

    The Design Is Not Finished An Some Images Have Been Replace With

    Different Images (In The Screenshots Area - Next To The Sign Up Section)

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.