View Full Version : Free Programmers Thread
Viral
01-04-2008, 02:16 AM
If you're willing to work for a pet site for free (and you're a programmer, obviously) please post this form.
Name:
Age:
Type of Coding Known: (PHP/MYSQL minimum)
Full time, part time, or consultant?
Examples:
stuffradio
01-04-2008, 03:01 AM
Carl
PHP/MySQL, CSS, xHTML, HTML, CSS, etc.
Consultant(I already do pretty much)
Example:
if ($_GET['do'] == "newthread") {
$title = addslashes($_POST[title]);
$message = addslashes($_POST[message]);
$format = nl2br(bbcode_format($message));
mysql_query("INSERT INTO `forum_threads` (fid, poster, title, message, lposter, views) VALUES ('$forum_id', '$userinfo[username]', '$title', '$format', '$userinfo[username]', '1')") or die(mysql_error());
if ($getforumname[posts_count] == "yes") {
mysql_query("UPDATE `forum_child` SET `l_post`='$userinfo[username]' WHERE `id`='$_GET[fid]'");
} else {
// Don't add to the post count!
}
echo "Thread successfully posted!";
}
MishieMoo
01-04-2008, 09:33 AM
Name: Mishie
Age: 19
Type of Coding Known: PHP/MYSQL, HTML, CSS, xHTML, some javascript
Full time, part time, or consultant: Consultant; Currently: too busy xD No more requests at this time, please.
Examples:
if($account=0){echo"ERROR! Don't have a bank account! Please go back and create one.";
include('footer.php');
exit();
}
elseif(!is_numeric($_POST['depositamount'])){
echo"ERROR! Deposit amount isn't a number!";
include('footer.php');
exit();
}
elseif($_POST['depositamount']>$_SESSION['tito']){
echo"ERROR! You don't have that much to spend!";
include('footer.php');
exit();
}
else{
$depositit=$_POST['depositamount'];
$depositamt=$depositit+$acctinfo['amount'];
$makedeposit=mysql_query("UPDATE bank SET amount='$depositamt' WHERE owner_id='$id'") or die(mysql_error());
if($makedeposit){
$onhand=$_SESSION['tito']-$depositit;
$updataonhand=mysql_query("UPDATE users SET tito='$onhand' WHERE id='$id'");
$_SESSION['tito']=$onhand;
echo'Success! '.$depositit.' titos were deposited!<meta http-equiv="refresh" content="1;url=titocave.php">';
}
}
if("34">=$random){
$randomwin=mt_rand(300,1400);
echo'<div class="event"><div class="eventtop">Random Event!</div><div class="eventbot">You have randomly found '.$randomwin.' titos!</div></div>';
$newtito=$_SESSION['tito']+$randomwin;
$random_update=mysql_query("UPDATE users SET tito='$newtito' where id='$userid'");
$_SESSION['tito']=$newtito;
}
Andrew
01-06-2008, 07:21 PM
What do you mean by consultant?
Viral
01-06-2008, 07:34 PM
Someone who doesn't want to work for a site as a staff member, but is happy doing a script or two for it. Or three. You know. Just non-staff member.
dc277
01-06-2008, 08:06 PM
Name: Tyler (Prefers Dc)
Age: 15
Type of Coding Known: (PHP/MYSQL minimum) PHP, MySQL, HTML, CSS (Not layout-wise), A bit of OOP PHP
Full time, part time, or consultant? Consultant
Examples:
Changes Username to User ID:
function us_id($username) {
$sql = mysql_query("SELECT `id` FROM `users` WHERE `username` = '$username'");
if (mysql_num_rows($sql) == "0") {
echo "Doesn't Exist!";
} else {
$info = mysql_fetch_array($sql);
return $info;
}
}
Bit of BBCode
function bbcode($text) {
$html = array("<b>", "</b>", "<u>", "</u>", "<i>", "</i>", "<center>", "</center>");
$bbcode = array("", "", "", "", "[i]", "", "", "");
$change = str_replace($html, $bbcode, $text);
return $change;
}
Worked/Helped For:
Herupets = Admin/Programmer - Current
DID: Fixed many bugs, Buddy List, Help System, a few other things.
Galaxypets = Helping - Current
DID: Avatar System. Helping redo everything for the official version.
Cosmixs = Helped - Old
DID: Fixed Registration, Added News Comments as a bonus
Desto = Admin/Programmer - Old
DID: News, and other things (its been a few months, so I dont' remember).
KinoIsle = Admin/Programmer - Old
DID: Basic Petsite stuff.
I THINK thats it, but I'm not 100% sure.
Contacts:
MSN: dc277@hotmail.com
Andrew
01-06-2008, 08:30 PM
No longer doing free work. Contact me if interested in paid work.
ilovepony
07-26-2008, 10:51 AM
edit, sorry =/
stuffradio
07-26-2008, 01:46 PM
No longer doing free work either. Gas costs too much right now :D
MishieMoo
08-08-2008, 10:26 AM
I'm no longer doing free work either. Contact me if you're interested in hiring me.
vBulletin® v3.7.2, Copyright ©2000-2009, Jelsoft Enterprises Ltd.