Page 1 of 5 12345 LastLast
Results 1 to 10 of 45

Thread: $_GET?

  1. #1
    Join Date
    Sep 2008
    Posts
    718
    Tokens
    0

    Default $_GET?

    Well, I'm trying to make something like this: http://habbcrazy.net/hcv3/php/text.p...bo&border=blue

    I know how to get the text, but I don't know how to make it the font I want.

    This is worded pretty bad, but w.e.

    Thanks.

    PS - I'm new in PHP.
    +.net - omg it's coming o_o

  2. #2

    Default

    Insert some html code into your echo? You'll have to ask someone else for the code... Or add a css style sheet?

  3. #3
    Join Date
    Sep 2008
    Posts
    718
    Tokens
    0

    Default

    Quote Originally Posted by Jam-ez View Post
    Insert some html code into your echo? You'll have to ask someone else for the code... Or add a css style sheet?
    The font can't be made with CSS. It is the volter font with a border.
    +.net - omg it's coming o_o

  4. #4
    Join Date
    Jul 2008
    Location
    Hastings, UK.
    Posts
    2,050
    Tokens
    0

    Latest Awards:

    Default

    PHP Code:
    <?php
    $text 
    $_GET'text' ];
    ?>

  5. #5
    Join Date
    Jul 2008
    Posts
    535
    Tokens
    75

    Default

    Quote Originally Posted by Calon View Post
    PHP Code:
    <?php
    $text 
    $_GET'text' ];
    ?>
    I believe he wants to change the font family, in which case he's going to need to use PHP GD. Well, you don't have to but it would be easier.

  6. #6
    Join Date
    Sep 2008
    Posts
    718
    Tokens
    0

    Default

    Quote Originally Posted by Calon View Post
    PHP Code:
    <?php
    $text 
    $_GET'text' ];
    ?>
    create.html
    HTML Code:
    <form action="test.php" method="get">
    String: <input type="text" name="string" />
    <input type="submit" />
    </form>
    create.php
    PHP Code:
    <?php echo $_GET["string"]; ?>
    I know how to get the text. But how can I make the output the Volter Font with a black border :S

    Edit: Yes Will.
    Last edited by HabbDance; 30-11-2008 at 12:03 AM. Reason: Read Will's post.
    +.net - omg it's coming o_o

  7. #7
    Join Date
    May 2006
    Location
    Hull
    Posts
    7,701
    Tokens
    2,430
    Habbo
    Moh

    Latest Awards:

    Default

    If your new with PHP, your going to struggle with this. We do ours using PHP GD. For the font, we have a file uploaded and for the background, a file uploaded.

    Simon (Invent) did ours

  8. #8
    Join Date
    Jul 2008
    Location
    Hastings, UK.
    Posts
    2,050
    Tokens
    0

    Latest Awards:


  9. #9
    Join Date
    Sep 2008
    Posts
    718
    Tokens
    0

    Default

    If I turn every letter into a variable is there a way I can do it?
    +.net - omg it's coming o_o

  10. #10
    Join Date
    Jul 2008
    Location
    Hastings, UK.
    Posts
    2,050
    Tokens
    0

    Latest Awards:

    Default

    I know a way without using GD, but it's pretty stupid.

Page 1 of 5 12345 LastLast

Posting Permissions

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