MyBB Community Forums

Full Version: Need a coder.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Yes, I am a coder, but this time I can't do it myself, don't have the time. I also don't have any money, but I do have a $5 Zendoo GC. Please PM me if you can help.
Why don't you just go rip it?
(2009-12-13, 07:59 PM)Scoutie44 Wrote: [ -> ]Why don't you just go rip it?

lol
I really doubt you're a coder, considering you didn't even know how to copy a website o.O (and where were the stylesheets of other files linked inside the HTML doc)
Considering macme.org is based on one of those free web templates, I highly doubt he's a coder.

<?php
if {
$redds coder(true)
}
then {
hell(freezeover)
}
?>
Correction Toungue

(2009-12-14, 08:51 PM)CAwesome Wrote: [ -> ]
<?php
if($redds_coder == true){
hell('freezeover');
}else{
echo 'You didn\'t even tell us what language you need them to code.';
}
?>
(2009-12-15, 03:55 AM)TimB. Wrote: [ -> ]Correction Toungue

(2009-12-14, 08:51 PM)CAwesome Wrote: [ -> ]
<?php
if($redds_coder == true){
hell('freezeover');
}else{
echo 'You didn\'t even tell us what language you need them to code.';
}
?>

I'll admit I didn't think that one through. Should've at least remembered the ;'s. Shy
Several problems with the code.
<?php
if { // needs to be if (
$redds coder(true) // Variables cannot have spaces, also variables can't take arguments. Should just be $redds_coder
} // should be )
then { // wtf is this shit. Should just be {
hell(freezeover) // should be hell($freezeover) or hell("freezeover") or my personal favorite $hell->freezeover(); also add a semicolon
}
?>

Final draft:

<?php
if ($redds_coder)
{
       $hell->freezeover();
}
?>
You have not defined your variables. What is $redds_coder?
(2009-12-20, 12:18 AM)Scoutie44 Wrote: [ -> ]You have not defined your variables. What is $redds_coder?

I think we were assuming it was predefined prior to that code.
Pages: 1 2