Page 2 of 2 FirstFirst 12
Results 11 to 18 of 18
  1. #11
    Join Date
    Dec 2006
    Location
    Swindon
    Posts
    3,299
    Tokens
    215
    Habbo
    dunko

    Latest Awards:

    Default

    Quote Originally Posted by Unpred5000 View Post
    yup i was, i tried doing it, its hard.

    always clicking the caps lock =/
    Use this then:

    www.froobe.co.uk/kk.php

    I was bored.

    Script:

    PHP Code:
    <?php

    /**
     * @author Ryan
     * @copyright 2007
     * @function PHP.NET
     */

    // This function is off PHP.NET. It can be found under the ucfirst function (www.php.net/ucfirst)
    function sentence_cap($impexp$sentence_split) {
        
    $textbad=explode($impexp$sentence_split);
        
    $newtext = array();
        foreach (
    $textbad as $sentence) {
            
    $sentencegood=ucfirst($sentence);
            
    $newtext[] = $sentencegood;
        }
        
    $textgood implode($impexp$newtext);
        return 
    $textgood;
    }

    // This bit is coded by me :D (except from the sentace_cao bit, but oh well)
    if( isset($_POST["text"] ) )
    {
        
    $text $_POST["text"];
        
    $text sentence_cap" "$text );
        echo 
    $text;
    }
    else
    {
        echo
        
    '
        <form action="' 
    $_SERVER["PHP_SELF"] . '" method="POST">
        <input type="text" name="text" />
        <input type="submit" value="Submit!">
        </form>
        '
    ;
    }

    ?>

  2. #12
    Join Date
    Sep 2006
    Location
    Doncaster, UK
    Posts
    4,081
    Tokens
    0

    Latest Awards:

    Default

    Canvas size = 900x900px.

    I only do small pixel layouts so that's all that's needed but remember; 800x600 is nearly gone - start designing for 1024x768 screen resolutions!
    Quote Originally Posted by Nain View Post
    i voted 'Not Sure' as im, not sure!

  3. #13
    Join Date
    Jan 2006
    Location
    Cambridge
    Posts
    1,911
    Tokens
    0

    Latest Awards:

    Default

    Quote Originally Posted by Blob View Post
    Use this then:

    www.froobe.co.uk/kk.php

    I was bored.

    Script:

    PHP Code:
    <?php

    /**
     * @author Ryan
     * @copyright 2007
     * @function PHP.NET
     */

    // This function is off PHP.NET. It can be found under the ucfirst function (www.php.net/ucfirst)
    function sentence_cap($impexp$sentence_split) {
        
    $textbad=explode($impexp$sentence_split);
        
    $newtext = array();
        foreach (
    $textbad as $sentence) {
            
    $sentencegood=ucfirst($sentence);
            
    $newtext[] = $sentencegood;
        }
        
    $textgood implode($impexp$newtext);
        return 
    $textgood;
    }

    // This bit is coded by me :D (except from the sentace_cao bit, but oh well)
    if( isset($_POST["text"] ) )
    {
        
    $text $_POST["text"];
        
    $text sentence_cap" "$text );
        echo 
    $text;
    }
    else
    {
        echo
        
    '
        <form action="' 
    $_SERVER["PHP_SELF"] . '" method="POST">
        <input type="text" name="text" />
        <input type="submit" value="Submit!">
        </form>
        '
    ;
    }

    ?>

    lol loser
    EDTALKING


  4. #14
    Join Date
    Jan 2007
    Posts
    825
    Tokens
    0

    Default

    Why do ppl go off topic
    That post was really sensible!

  5. #15
    Join Date
    Sep 2006
    Location
    Doncaster, UK
    Posts
    4,081
    Tokens
    0

    Latest Awards:

    Default

    Quote Originally Posted by Aflux View Post
    Canvas size = 900x900px.

    I only do small pixel layouts so that's all that's needed but remember; 800x600 is nearly gone - start designing for 1024x768 screen resolutions!
    Quote Originally Posted by Mashi View Post
    Why do ppl go off topic
    :rolleyes:

    Edited by micky.blue.eyes (Super Moderator): Please don't create short and meaningless posts.
    Last edited by micky.blue.eyes; 31-05-2007 at 09:45 AM.
    Quote Originally Posted by Nain View Post
    i voted 'Not Sure' as im, not sure!

  6. #16
    ScottDiamond Guest

    Default

    Quote Originally Posted by Aflux View Post
    :rolleyes:
    He obviously means Ed. ;P

  7. #17
    Join Date
    Jan 2007
    Posts
    825
    Tokens
    0

    Default

    IS IT A GOOD IDEA TO JUST RESIZE THEM. SO CREATE AT 1024x768 THEN RESIZE TO 800X600?
    That post was really sensible!

  8. #18
    Join Date
    Jan 2006
    Location
    Cambridge
    Posts
    1,911
    Tokens
    0

    Latest Awards:

    Default

    Quote Originally Posted by ScottDiamond View Post
    He obviously means Ed. ;P
    Quit yo foolishness
    EDTALKING


Page 2 of 2 FirstFirst 12

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •