Web Programmers Needed
- Phade
- Site Admin
- Joined: Fri Oct 20, 2000 10:49 pm
- Location: Little cabin in the woods...
Web Programmers Needed
[note: don't follow the directions to sign up in this message. Instead, use the usergroups button. Thanks --- derobert.]
Hey All,
Sorta like "Jack and the Bean Stalk", this site just keeps growing and growing and growing. But, it's getting to the point where it is difficult for just one person to maintain everything and keep everything up-to-date in a timely manner. So, if you are a web programmer (not really a designer) and would like to help out with some site sections, fill out and submit this programmers sign-up form. Your help is greatly appreciated!
In addition to regular HTML, the site currently uses PHP (http://www.php.net) as the main site scripting language and MySQL (http://www.mysql.com) as the database. Currently, the only prefabricated chunk of code used on the site is the forum (http://www.phpbb.com). If you have web programming skills and would like to help out, please fill out and submit the following form.
Phade.
Hey All,
Sorta like "Jack and the Bean Stalk", this site just keeps growing and growing and growing. But, it's getting to the point where it is difficult for just one person to maintain everything and keep everything up-to-date in a timely manner. So, if you are a web programmer (not really a designer) and would like to help out with some site sections, fill out and submit this programmers sign-up form. Your help is greatly appreciated!
In addition to regular HTML, the site currently uses PHP (http://www.php.net) as the main site scripting language and MySQL (http://www.mysql.com) as the database. Currently, the only prefabricated chunk of code used on the site is the forum (http://www.phpbb.com). If you have web programming skills and would like to help out, please fill out and submit the following form.
Phade.
- shinji13
- Joined: Sat Mar 29, 2003 4:40 pm
- Location: Seattle, WA
- Contact:
Re: Web Programmers Needed
I think you would have a better chance if you were using html.Of course only because i know html, to bad this wasn't happening in 3 months once i finish learning html im going to start PHP but i don't know how long it will take me to finish html i know a lot.Good Luck!!!!
"The secret to creativity is knowing how to hide your sources." - Albert Einstein
- derobert
- Phantom of the .Org
- Joined: Wed Oct 24, 2001 8:35 am
- Location: Sterling, Virginia
- Contact:
Re: Web Programmers Needed
You can't do dynamic content in plain HTML. .org would be fairly boring if it weren't dynamic.shinji13 wrote:I think you would have a better chance if you were using html.
Key 55EA59FE; fingerprint = E501 CEE3 E030 2D48 D449 274C FB3F 88C2 55EA 59FE
A mighty order of ages is born anew. http://twitter.com/derobert
A mighty order of ages is born anew. http://twitter.com/derobert
- Deaths_ally
- Joined: Fri Jan 10, 2003 12:05 am
- Location: A hole in the floor
- Contact:
Re: Web Programmers Needed
not only that.. the number of pages that would have to be made would be massive.. over 50k members and about 30+ pages... now work that out.. then there is the fact new members join every hour or so..derobert wrote:You can't do dynamic content in plain HTML. .org would be fairly boring if it weren't dynamic.shinji13 wrote:I think you would have a better chance if you were using html.
html is a waste of time these days.. I'm trying to learn php for my site...
- derobert
- Phantom of the .Org
- Joined: Wed Oct 24, 2001 8:35 am
- Location: Sterling, Virginia
- Contact:
Re: Web Programmers Needed
<ul><li>2006 anime and non-anime listings<li>4147 musical artists<li>120,622 banner ad votes<li>1,292 banners<li>29,163 journal entries<li>69,899 link problems <li>84747 members<li>30,333 opinions<li>185,509 current forum postings<li>9,991 songs<li>60,114 votes on the star scale<li>3,218 studios<li>19,837 videos</ul>Deaths_ally wrote:not only that.. the number of pages that would have to be made would be massive.. over 50k members
Overall, the .org database contains 7,750,789 rows of data. And I'm sure its grown by the time I manage to hit "Submit"
Key 55EA59FE; fingerprint = E501 CEE3 E030 2D48 D449 274C FB3F 88C2 55EA 59FE
A mighty order of ages is born anew. http://twitter.com/derobert
A mighty order of ages is born anew. http://twitter.com/derobert
- shinji13
- Joined: Sat Mar 29, 2003 4:40 pm
- Location: Seattle, WA
- Contact:
Re: Web Programmers Needed
I didn't know that shitt, besides i was only talking about the amount of people who know it, more people know html than php.
"The secret to creativity is knowing how to hide your sources." - Albert Einstein
- jonmartensen
- Joined: Sat Aug 31, 2002 11:50 pm
- Location: Gimmickville USA
Re: Web Programmers Needed
Though, to be fair, aren't most of those related to links posted by members to offsite pages/files from their video page?derobert wrote:<ul><li>69,899 link problems </ul>
- Phade
- Site Admin
- Joined: Fri Oct 20, 2000 10:49 pm
- Location: Little cabin in the woods...
- Clara Yuri Asaki
- Joined: Thu Aug 15, 2002 1:37 pm
- Location: Where the Goddesses sleep in each other's arms peacefully... Loves: Shoujo-Ai and Yuri
- Contact:
*wants to help!* ^_^7
This mod from phpbb.com detects if a remote Avatar works before displaying it. (it displays no Avatar instead of a red X if it can't be found/loaded) Anyways, maybe the code for detecting broken links is similiar?Phade wrote:Hmmmm, a script to detect 404s would be cool...
-
- Joined: Wed Aug 20, 2003 9:12 pm
- Location: IL
- Contact:
Re: *wants to help!* ^_^7
try something like this...(not saying this is gonna be perfect)Clara Yuri Asaki wrote:This mod from phpbb.com detects if a remote Avatar works before displaying it. (it displays no Avatar instead of a red X if it can't be found/loaded) Anyways, maybe the code for detecting broken links is similiar?Phade wrote:Hmmmm, a script to detect 404s would be cool...
Code: Select all
<?php
if(getimagesize("link/to/img/picture.jpg" == "0"){
echo "<img src="link/to/img/picture.jpg"";
}
else{}
?>
-Mark