Results 1 to 10 of 10

Thread: Free PHP Coding

  1. #1
    Join Date
    Jul 2005
    Posts
    1,653
    Tokens
    50

    Latest Awards:

    Default Free PHP Coding

    Post what you want coded here and I'll code it if I can, no specific order - just what takes my fancy.

    DO NOT PM ME

  2. #2
    Join Date
    Feb 2006
    Location
    Scotland
    Posts
    2,087
    Tokens
    138

    Latest Awards:

    Default

    Hey,

    Maybe something like a Habbo Help Tool for fansites that is similar to the Habbo Hotel one so its on different pages. Then the information can be submitted to a MySQL Table and/or an email.


    .:; Johno

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

    Latest Awards:

    Default

    Quote Originally Posted by ActiveVision View Post
    Hey,

    Maybe something like a Habbo Help Tool for fansites that is similar to the Habbo Hotel one so its on different pages. Then the information can be submitted to a MySQL Table and/or an email.


    .:; Johno
    Make sure it's nothing like Habbo's though as sites have got shut down before for 'imitating Habbo' - which is stupid because they are fan sites after all.
    Quote Originally Posted by Nain View Post
    i voted 'Not Sure' as im, not sure!

  4. #4
    Join Date
    Feb 2007
    Posts
    2,941
    Tokens
    0

    Latest Awards:

    Default

    a billing system for jingles so you add stuff to the checkout then when u are going to pay you can enter the scripts for the jingles you have bought.

    but some packages have more that 1 jingle included so a admin would have to be able to change how many forms there was on there

  5. #5
    Join Date
    Apr 2006
    Location
    Leamington Spa
    Posts
    1,375
    Tokens
    72

    Latest Awards:

    Default

    Quote Originally Posted by ActiveVision View Post
    Hey,

    Maybe something like a Habbo Help Tool for fansites that is similar to the Habbo Hotel one so its on different pages. Then the information can be submitted to a MySQL Table and/or an email.


    .:; Johno
    That's dead easy. (Email version) Not bothered to do MySQL.
    Replace $email's value with your email.

    PHP Code:
    <?php
    if(!$_POST['submit']) {
    $email '[email protected]';
    echo(
    "CALL FOR HELP! <br>
    <form action=
    $_SERVER['PHP_SELF'] method=POST>
    Message:<input type=text name=message value=Type Message Here!>
    Send!:<input type=submit name=submit value=GET HELP>"
    );
    }else{
    mail($_POST['email'], 'Call for help sent.'$_POST['message']);
    echo(
    "Thanks! Your mail has been sent.");
    }
    ?>
    Coded in 3 minutes FLAT. Would've been faster if I'd had a decent keyboard/wasn't deadly tired.

    Almost definatley wont work, UNTESTED.
    Last edited by lolwut; 18-08-2007 at 09:46 PM.
    i've been here for over 8 years and i don't know why

  6. #6
    Join Date
    Feb 2006
    Location
    Scotland
    Posts
    2,087
    Tokens
    138

    Latest Awards:

    Default

    Quote Originally Posted by Emo Rangers View Post
    That's dead easy. (Email version) Not bothered to do MySQL.
    Replace $email's value with your email.

    PHP Code:
    <?php
    if(!$_POST['submit']) {
    $email '[email protected]';
    echo(
    "CALL FOR HELP! <br>
    <form action=
    $_SERVER['PHP_SELF'] method=POST>
    Message:<input type=text name=message value=Type Message Here!>
    Send!:<input type=submit name=submit value=GET HELP>"
    );
    }else{
    mail($_POST['email'], 'Call for help sent.'$_POST['message']);
    echo(
    "Thanks! Your mail has been sent.");
    }
    ?>
    Coded in 3 minutes FLAT. Would've been faster if I'd had a decent keyboard/wasn't deadly tired.

    Almost definatley wont work, UNTESTED.
    Yeah but what I meant was it spread over a few pages and stuff, I was just suggesting something anyway

    .:; Johno

  7. #7
    Join Date
    Oct 2006
    Location
    Peterborough, UK
    Posts
    3,855
    Tokens
    216

    Latest Awards:

    Default

    Quote Originally Posted by Emo Rangers View Post
    That's dead easy. (Email version) Not bothered to do MySQL.
    Replace $email's value with your email.

    PHP Code:
    <?php
    if(!$_POST['submit']) {
    $email '[email protected]';
    echo(
    "CALL FOR HELP! <br>
    <form action=
    $_SERVER['PHP_SELF'] method=POST>
    Message:<input type=text name=message value=Type Message Here!>
    Send!:<input type=submit name=submit value=GET HELP>"
    );
    }else{
    mail($_POST['email'], 'Call for help sent.'$_POST['message']);
    echo(
    "Thanks! Your mail has been sent.");
    }
    ?>
    Coded in 3 minutes FLAT. Would've been faster if I'd had a decent keyboard/wasn't deadly tired.

    Almost definatley wont work, UNTESTED.
    '___' you don't need $_SERVER['PHP_SELF'] just use action=""


    visit my internet web site on the internet
    http://dong.engineer/
    it is just videos by bill wurtz videos you have been warned

  8. #8
    Join Date
    May 2005
    Location
    San Francisco, CA
    Posts
    7,160
    Tokens
    2,331

    Latest Awards:

    Default

    <?php
    if(!$_POST['submit']) {
    $email = '[email protected]';
    echo(
    "CALL FOR HELP! <br>
    <form action=$_SERVER['PHP_SELF'] method=POST>
    Message:<input type=text name=message value=Type Message Here!>
    Send!:<input type=submit name=submit value=GET HELP>"
    );
    }else{
    mail($_POST['email'], 'Call for help sent.', $_POST['message']);
    echo(
    "Thanks! Your mail has been sent.");
    }
    ?>


    Sorry...but that took you 3minutes to code? O_O

  9. #9
    Join Date
    Jan 2007
    Posts
    825
    Tokens
    0

    Default

    a Billing system like cube cart,

    OR

    A Get total flying hours off vatsim
    That post was really sensible!

  10. #10
    Join Date
    Feb 2006
    Location
    Ontario Canada
    Posts
    4,587
    Tokens
    0

    Latest Awards:

    Default

    Quote Originally Posted by Invent View Post


    Sorry...but that took you 3minutes to code? O_O
    & i believe that kind of code no longer works .

    .:.:#14:.:. .:.: Impossible Is Nothing :.:. .:.: 845 Rep:.:.
    .:.: Stand up for what is right, even if you stand alone:.:.


Posting Permissions

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