PDA

View Full Version : Free PHP Coding



RYANNNNN
18-08-2007, 07:40 PM
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

Johno
18-08-2007, 07:51 PM
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

Aflux
18-08-2007, 07:54 PM
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.

Hayd93
18-08-2007, 08:42 PM
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

lolwut
18-08-2007, 09:41 PM
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
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.

Johno
18-08-2007, 10:45 PM
That's dead easy. (Email version) Not bothered to do MySQL.
Replace $email's value with your email.



<?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

Agnostic Bear
19-08-2007, 08:55 PM
That's dead easy. (Email version) Not bothered to do MySQL.
Replace $email's value with your email.



<?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=""

Invent
19-08-2007, 08:57 PM
<?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

Mashi
19-08-2007, 09:06 PM
a Billing system like cube cart,

OR

A Get total flying hours off vatsim :)

Colin-Roberts
19-08-2007, 09:19 PM
Sorry...but that took you 3minutes to code? O_O

& i believe that kind of code no longer works .

Want to hide these adverts? Register an account for free!