| View previous topic :: View next topic   | 
	
	
	
		| Author | 
		Message | 
	
	
		HIWD -
 
  Joined: 13 Apr 2004 Posts: 142 Location: Dublin, Ireland
  | 
		
			
				 Posted: Wed Jun 23, 2004 8:15 pm    Post subject: My site, free downloads for web developers! | 
				      | 
			 
			
				
  | 
			 
			
				I have my site setup, some pages don't work yet be anyway check it out and tell me what you think. Its a free download resource for web developers.
 
 
 
http://www.hiwd-dev.com
  Last edited by HIWD on Fri Jun 25, 2004 8:51 pm; edited 2 times in total | 
			 
		  | 
	
	
		| Back to top | 
		
			           | 
		
	
	
		  | 
	
	
		TRUSTAbyss -
 
  Joined: 29 Oct 2003 Posts: 3752 Location: USA, GA
  | 
		
			
				 Posted: Wed Jun 23, 2004 8:31 pm    Post subject:  | 
				      | 
			 
			
				
  | 
			 
			
				I love the layout , good work and thanks for using 
 
Abyss Web Server , your going to love the next beta
 
that Aprelium told me their releasing in a few hours.
 
 
Abyss/2.0 Beta 1 - Being Released Soon ! | 
			 
		  | 
	
	
		| Back to top | 
		
			           | 
		
	
	
		  | 
	
	
		HIWD -
 
  Joined: 13 Apr 2004 Posts: 142 Location: Dublin, Ireland
  | 
		
			
				 Posted: Wed Jun 23, 2004 8:32 pm    Post subject:  | 
				      | 
			 
			
				
  | 
			 
			
				| Their releasing it today? | 
			 
		  | 
	
	
		| Back to top | 
		
			           | 
		
	
	
		  | 
	
	
		TRUSTAbyss -
 
  Joined: 29 Oct 2003 Posts: 3752 Location: USA, GA
  | 
		
			
				 Posted: Wed Jun 23, 2004 8:45 pm    Post subject:  | 
				      | 
			 
			
				
  | 
			 
			
				Well currently , they just e-mailed me and said that
 
their compiling the Linux , FreeBSD and MAC OS Betas
 
so that even other Operating Systems can enjoy it.
 
 
The new beta is going to be possibly
 
released later tonite from what I heard ! | 
			 
		  | 
	
	
		| Back to top | 
		
			           | 
		
	
	
		  | 
	
	
		00squeaky -
 
  Joined: 11 May 2004 Posts: 60
 
  | 
		
			
				 Posted: Sat Jun 26, 2004 5:41 am    Post subject:  | 
				      | 
			 
			
				
  | 
			 
			
				php is a mmuch better language.  it would suit your site well.  it has suited mine well.
 
 
nice layout-  just it is way to corvy and your tables take forever to load.
 
 
for your upload thing-  use this code.
 
 
form:
 
 	  | Code: | 	 		  <form enctype="multipart/form-data" action="upload.php" method="post">
 
 <input type="hidden" name="MAX_FILE_SIZE" value="6000000" />
 
 File:<input name="userfile" type="file" />
 
 <input type="submit" value="Send File" />
 
</form> | 	  
 
 
processor (PHP)
 
 	  | Code: | 	 		  <?php
 
// In PHP versions earlier than 4.1.0, $HTTP_POST_FILES should be used instead
 
// of $_FILES.
 
 
$uploaddir = 'games/';
 
$uploadfile = $uploaddir . $_FILES['userfile']['name'];
 
 
print "<pre>";
 
if (move_uploaded_file($_FILES['userfile']['tmp_name'], $uploadfile)) {
 
print "File is valid, and was successfully uploaded. ";
 
print "Here's some more debugging info (IGNORE THIS!):\n";
 
print_r($_FILES);  print "\n";
 
echo "<BR>return to <a href=\"membersarea.php\">the Members Area</a>";
 
} else {
 
print "Possible file upload attack! Here's some debugging info:\n";
 
print_r($_FILES);
 
}
 
print "</pre>";
 
 
?>
 
 | 	  
 
 
:) _________________ Languages mastered:
 
HTML,GML,C,PHP,MYSQL (not really a language, but wtf) | 
			 
		  | 
	
	
		| Back to top | 
		
			          | 
		
	
	
		  | 
	
	
		gonepostal_1 -
 
  Joined: 02 Jun 2004 Posts: 108
 
  | 
		 | 
	
	
		| Back to top | 
		
			            | 
		
	
	
		  | 
	
	
		iNaNimAtE -
 
  Joined: 05 Nov 2003 Posts: 2381 Location: Everywhere you're not.
  | 
		
			
				 Posted: Sun Jun 27, 2004 1:24 am    Post subject:  | 
				      | 
			 
			
				
  | 
			 
			
				I like the smooth layout. However, I'm not too ecstatic about the scrolling text. _________________ Bienvenidos! | 
			 
		  | 
	
	
		| Back to top | 
		
			                | 
		
	
	
		  | 
	
	
		HIWD -
 
  Joined: 13 Apr 2004 Posts: 142 Location: Dublin, Ireland
  | 
		
			
				 Posted: Sun Jun 27, 2004 12:42 pm    Post subject:  | 
				      | 
			 
			
				
  | 
			 
			
				| Yes, the graphics page is under development and I have been meaning to put a "Under Construction" page there. Thank you for your comments. | 
			 
		  | 
	
	
		| Back to top | 
		
			           | 
		
	
	
		  | 
	
	
		 |