Page 1 of 3 123 LastLast
Results 1 to 10 of 28

Thread: PHP Help + Rep

  1. #1
    Join Date
    Jul 2005
    Posts
    190
    Tokens
    0

    Default PHP Help + Rep

    How can i change the login, submit, update e.c.t. from stock ones to ones ive made my self.

    Thanks +Rep

  2. #2
    Join Date
    Jul 2005
    Location
    -
    Posts
    2,995
    Tokens
    0

    Latest Awards:

    Default

    explain a bit more?

  3. #3
    Join Date
    Jul 2005
    Posts
    190
    Tokens
    0

    Default

    Like on user systems where is says "login" the actuall button, I want to know how to change it

  4. #4
    Join Date
    Aug 2005
    Location
    Location Location
    Posts
    1,730
    Tokens
    0

    Latest Awards:

    Default

    PHP Code:
    <form ENCTYPE="multipart/form-data" method="post" name="form1" action="upload.php"

  5. #5
    Join Date
    Jul 2005
    Location
    -
    Posts
    2,995
    Tokens
    0

    Latest Awards:

    Default

    <form method="POST" action="login.php">
    <input type="text" name="username" size="20">
    <input type="password" name="password" size="20">
    <input border="0" src="image url" name="imagebutton" type="image"></form>
    somthing like that?

  6. #6
    Join Date
    Jul 2005
    Posts
    190
    Tokens
    0

    Default

    Yup... Ty let me just see if it works

  7. #7
    Join Date
    Aug 2005
    Location
    Location Location
    Posts
    1,730
    Tokens
    0

    Latest Awards:

    Default

    Quote Originally Posted by Jamie.
    somthing like that?
    Isnt that html?

  8. #8
    Join Date
    Apr 2006
    Location
    England
    Posts
    1,159
    Tokens
    0

    Latest Awards:

    Default

    You need to use CSS. For example:-
    HTML Code:
    <style type="text/css">
    input {
    color: #colorcode;
    border-color: #colorcode;
    }
    </style>
    <input type="submit" value="Submit">
    Use google or dreamweaver to explore other properties of the input you are able to edit.

    To make the login button an image for example, try <input type="image" src="url">.

  9. #9
    Join Date
    Jul 2005
    Location
    -
    Posts
    2,995
    Tokens
    0

    Latest Awards:

    Default

    php can use html ;l

  10. #10
    Join Date
    Apr 2006
    Location
    England
    Posts
    1,159
    Tokens
    0

    Latest Awards:

    Default

    Sorry? :S

    You can use HTML inside PHP if that's what you're saying. <? echo('<font class="heading">Hi</font>'); ?> for example.

Page 1 of 3 123 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
  •