This is a read-only archive of the old Scratch 1.x Forums.
Try searching the current Scratch discussion forums.

#1 2012-08-06 12:03:45

XenoK
Scratcher
Registered: 2011-09-08
Posts: 1000+

Programmers needed!

Attention!  Eternity Incurakai is looking for new programmers to help with the development of the Eternity-X platform, to power the Eternity Incurakai Website.  The different roles are described and listed below.

PHP programmer(s) - needs to have an exceptional knowledge of php.  This person will be working on the profiles section, and eventually other areas.  More information will be provided if accepted.

more will be added later.  We can also discuss the platform here as well.

Mods, move this if necessary.


Eternity Tasks has launched into Alpha One! http://tasks.eternityincurakai.com/EI%20projects.png

Offline

 

#2 2012-08-06 12:11:58

veggieman001
Scratcher
Registered: 2010-02-20
Posts: 1000+

Re: Programmers needed!

Uh, it doesn't really require exceptional knowledge of PHP to make a profile page; all you need to know is how to get values from a database. Most of the knowledge required is HTML and CSS.


Posts: 20000 - Show all posts

Offline

 

#3 2012-08-06 12:16:00

XenoK
Scratcher
Registered: 2011-09-08
Posts: 1000+

Re: Programmers needed!

veggieman001 wrote:

Uh, it doesn't really require exceptional knowledge of PHP to make a profile page; all you need to know is how to get values from a database. Most of the knowledge required is HTML and CSS.

we are talking dynamically adding profile pages, editing them, managing them, etc.


Eternity Tasks has launched into Alpha One! http://tasks.eternityincurakai.com/EI%20projects.png

Offline

 

#4 2012-08-06 12:43:28

Magnie
Scratcher
Registered: 2007-12-12
Posts: 1000+

Re: Programmers needed!

XenoK wrote:

veggieman001 wrote:

Uh, it doesn't really require exceptional knowledge of PHP to make a profile page; all you need to know is how to get values from a database. Most of the knowledge required is HTML and CSS.

we are talking dynamically adding profile pages, editing them, managing them, etc.

Which just means you need to know how to edit values in the database. As Veggie said, the main thing you need to know is HTML.

Code:

<html>
<head>
<title>Profile Updater</title>
</head>
<body>
<?php
// Connect to MySQL database.
$con = mysql_connect('localhost', 'root', 'password');

mysql_select_db("my_db", $con);

$profile_id = mysql_real_escape_string($_POST['id']); // mysql_real_escape_string() prevents SQL Injections, should surround any/all input received from the client.
$profile_text = mysql_real_escape_string($_POST['text']);

if (!$profile_text) {
    mysql_query("UPDATE user_profiles SET profile_text=$profile_text WHERE id=$profile_id");
    echo "Profile updated!";
} else {
    $result = mysql_query("SELECT * FROM user_profiles WHERE id=$profile_id");
    $row = mysql_fetch_array($result);
    $profile_text = $row['text'];
    echo "<input type='hidden' name='id' value='1' /><br />
<input type='text' name='text' value='$profile_text' /><br />
<input type='submit' value='Submit' />";
}

mysql_close($con);
?>
</body>
</html>

My PHP is rusty, but it's something like that.

Offline

 

#5 2012-08-06 13:18:16

XenoK
Scratcher
Registered: 2011-09-08
Posts: 1000+

Re: Programmers needed!

This isn't the only thing that you'd be working on.  PHP knowledge is required, because each time a person signs up, it has to create both the database info, (which I know how to do) and the actual page that other people can access, which is slightly harder.  We're also connecting profile data to a forum profile, in which it will automatically log you in like on the scratch website.


Eternity Tasks has launched into Alpha One! http://tasks.eternityincurakai.com/EI%20projects.png

Offline

 

#6 2012-08-06 14:19:30

nickbrickmaster
Scratcher
Registered: 2010-02-02
Posts: 500+

Re: Programmers needed!

I built something like this. If you want help, ask me, but I won't be part of the project.


Ask me what I'm doing, wait an hour than roll a die, if it's 4-6, I'm playing Skyrim, if it's 1, I'm eating, if it's 2-3 I'm programming.
Steam: nickbrickmaster | RotMG: PwnThemAll | Minecraft: nickbrickmaster | League Of Legends: BaneOfTitans

Offline

 

#7 2012-08-06 15:29:24

LS97
Scratcher
Registered: 2009-06-14
Posts: 1000+

Re: Programmers needed!

XenoK wrote:

This isn't the only thing that you'd be working on.  PHP knowledge is required, because each time a person signs up, it has to create both the database info, (which I know how to do) and the actual page that other people can access, which is slightly harder.  We're also connecting profile data to a forum profile, in which it will automatically log you in like on the scratch website.

The page people can access shouldn't actually be created at signup!
It should be a single page that then decides which user to display depending on a get variable passed.

Offline

 

#8 2012-08-06 15:44:00

SJRCS_011
Scratcher
Registered: 2011-02-07
Posts: 1000+

Re: Programmers needed!

LS97 wrote:

XenoK wrote:

This isn't the only thing that you'd be working on.  PHP knowledge is required, because each time a person signs up, it has to create both the database info, (which I know how to do) and the actual page that other people can access, which is slightly harder.  We're also connecting profile data to a forum profile, in which it will automatically log you in like on the scratch website.

The page people can access shouldn't actually be created at signup!
It should be a single page that then decides which user to display depending on a get variable passed.

and if you want to make the url look a little prettier, just use a rewrite rule in .htaccess
You don't need exceptional skills with php to do what you're asking.  Just flipping through w3schools would probably get you what you need.

Last edited by SJRCS_011 (2012-08-06 16:06:21)


http://i.imgur.com/vQqtH.png
Learning to Program in a Nutshell:  "You're missing a closing parentheses" - LS97

Offline

 

#9 2012-08-06 16:11:41

XenoK
Scratcher
Registered: 2011-09-08
Posts: 1000+

Re: Programmers needed!

LS97 wrote:

XenoK wrote:

This isn't the only thing that you'd be working on.  PHP knowledge is required, because each time a person signs up, it has to create both the database info, (which I know how to do) and the actual page that other people can access, which is slightly harder.  We're also connecting profile data to a forum profile, in which it will automatically log you in like on the scratch website.

The page people can access shouldn't actually be created at signup!
It should be a single page that then decides which user to display depending on a get variable passed.

ok, there we go.  Thanks for that, but I'm still looking to hire someone.


Eternity Tasks has launched into Alpha One! http://tasks.eternityincurakai.com/EI%20projects.png

Offline

 

#10 2012-08-06 16:35:24

jvvg
Scratcher
Registered: 2008-03-26
Posts: 1000+

Re: Programmers needed!

XenoK wrote:

LS97 wrote:

XenoK wrote:

This isn't the only thing that you'd be working on.  PHP knowledge is required, because each time a person signs up, it has to create both the database info, (which I know how to do) and the actual page that other people can access, which is slightly harder.  We're also connecting profile data to a forum profile, in which it will automatically log you in like on the scratch website.

The page people can access shouldn't actually be created at signup!
It should be a single page that then decides which user to display depending on a get variable passed.

ok, there we go.  Thanks for that, but I'm still looking to hire someone.

A lot of sites use that, actually (such as FluxBB, you pass the user ID in a GET variable).


http://tiny.cc/zwgbewhttp://tiny.cc/e1gbewhttp://tiny.cc/zygbewhttp://tiny.cc/izgbew
Goodbye, Scratch 1.4  sad                                                        Hello Scratch 2.0!  smile

Offline

 

#11 2012-08-06 16:46:46

stevetheipad
Scratcher
Registered: 2011-08-06
Posts: 1000+

Re: Programmers needed!

You guys certainly change your site too much.  tongue


http://i.imgur.com/0x8ia.jpg
gone

Offline

 

#12 2012-08-06 16:49:55

XenoK
Scratcher
Registered: 2011-09-08
Posts: 1000+

Re: Programmers needed!

stevetheipad wrote:

You guys certainly change your site too much.  tongue

lol thats what happens when I get bored.


Eternity Tasks has launched into Alpha One! http://tasks.eternityincurakai.com/EI%20projects.png

Offline

 

#13 2012-08-06 16:51:18

XenoK
Scratcher
Registered: 2011-09-08
Posts: 1000+

Re: Programmers needed!

stevetheipad wrote:

You guys certainly change your site too much.  tongue

stevetheipad, you've been chosen as a beta tester for the new Eternity-X platform!  pm me your desired password.


Eternity Tasks has launched into Alpha One! http://tasks.eternityincurakai.com/EI%20projects.png

Offline

 

#14 2012-08-06 16:53:57

XenoK
Scratcher
Registered: 2011-09-08
Posts: 1000+

Re: Programmers needed!

so, anyone interested in helping out with the development of the Eternity-X platform?


Eternity Tasks has launched into Alpha One! http://tasks.eternityincurakai.com/EI%20projects.png

Offline

 

#15 2012-08-06 17:12:40

GeonoTRON2000
Scratcher
Registered: 2009-12-24
Posts: 1000+

Re: Programmers needed!

XenoK wrote:

so, anyone interested in helping out with the development of the Eternity-X platform?

I'd help, but I just decided to do DragonFEST.


http://i.imgur.com/BAEgGDL.png

Offline

 

#16 2012-08-06 17:32:32

XenoK
Scratcher
Registered: 2011-09-08
Posts: 1000+

Re: Programmers needed!

ok, anyone else?


Eternity Tasks has launched into Alpha One! http://tasks.eternityincurakai.com/EI%20projects.png

Offline

 

Board footer