|
|
|
 |
Posted 2008-10-11, 12:21 PM
in reply to Goodlookinguy's post starting "I'm a self-taught programmer. If you..."
|
 |
 |
 |
I'm a self-taught programmer. If you wanted to, you could be too. By the way, if you're poor, "free" E-books are a valid way to go. Just be sure to read them and delete the books later once you understand what you're doing.
You're welcome. You explained them as well as anyone could have. Variables are just variables, they have no defined value until given one. Then when you no longer need that value, then you can reuse the variable to define it if you want.
PHP Code:
class programmer {
function find_lie($user) {
$user = $this->detect($user);
}
function detect($user) {
// This function has a hidden value :D
// Could I have used this function alone?
// Yes, but I felt like adding in more to
// seem special and smart.
}
}
$programmer = new programmer(true);
$Wolfturn = $programmer->find_lie($Wolfturn);
if ($Wolfturn == "lie") {
echo("You're no programmer!");
}
elseif ($Wolfturn == "truth") {
echo("I'm glad to see you at least know something.");
}
else {
echo("Oh, dear lord, Regular Expressions are hard!");
}
----------------------------------------------
Anyways, all of this chit-chat about RPG Maker has gotten me all excited to create something no one has ever done before.
By the way flappykun, I hope all of this crud helped you.
|
First off, lol thats funny btw Thanks for the little coding up there. I could sorta read it, But not all of it, (if you could explain what it is.. might help me later on)
anyways, you know any good Ebooks i could find to use? (yes i'm a poor dude here) only 15 so i'm poor until further notice.  lol.
I want to learn a language that will let me make a program without anything, On notepad. I Have a friend and he says that binary is the best language to learn, but thats a pretty tough thing.. lol too many 0's and 1's :P any easier languages, a good one for a begginer? (i've tried VisualBasic, but there are no good E-books for that, that teach you how to use it correctly)


|
 |
 |
 |
|
|
|
|
|
|
|