Staredit Network

Staredit Network -> Computers and Technical -> Help
Report, edit, etc...Posted by Mp)7-7 on 2006-05-06 at 11:11:39
I just started making a website this morning, I want to make a network just like this one, but different. What type of things would I need to know and use to make one like this, with games and a forum where people can sign in and stuff? I am kinda new to this stuff, but everyone has to start somewhere!

1st question I came up to is, how do I align a picture to center?
Report, edit, etc...Posted by IanMM on 2006-05-06 at 11:14:56
With
CODE
<center> text here </center>
Does your server provide php and mysql?
Report, edit, etc...Posted by Mp)7-7 on 2006-05-06 at 11:16:18
I am insertina an image, would i do the same thing?


what do you mean?
Report, edit, etc...Posted by IanMM on 2006-05-06 at 11:48:24
That centers everything. What server do you have podt a link and I'll be able to help you more.
Report, edit, etc...Posted by Centreri on 2006-05-06 at 12:20:55
You need a server that supports the PHP server-side web programming language, have a few MySQL databases at your disposal, have a lot of online space, know HTML, PHP, CSS, and Javascript, have a fast server, and be a good administrator. No offense, but I doubt you can do it. I wasn't able to -_-.
Report, edit, etc...Posted by Pie_Sniper on 2006-05-06 at 12:43:52
I wouldn't use <center>. You're better off using a <p> and CSS with a text-align: center style.
CODE
<html>

 <head>
   <style type="text/css">
     p.Center
     {
       text-align: center;
     }
   </style>
 </head>

 <body>
   <p class="Center"><img src="Image.png" /></p>
 </body>

</html>
Report, edit, etc...Posted by Centreri on 2006-05-06 at 13:01:47
Why not use Center, though? It's a bit easier to use, and he's just starting anyway. <p> tags are so annoying. I prefer to use <div> for that, though it's the same thing.
Report, edit, etc...Posted by Mp)7-7 on 2006-05-06 at 13:32:14
How would i center this?

CODE

<img src="7-7.jpg"
width="400" height="150">
Report, edit, etc...Posted by BeeR_KeG on 2006-05-06 at 13:45:07
CODE
<p class="center"><img src="7-7.jpg"
width="400" height="150"></p>


I highly suggest that you do not build a website until you have proper HTML knowledge, which is the basic building blocks of everything which is web related. You can go to http://www.w3schools.com/default.asp to learn more about HTML and other web languages.

Forums will be using PHP, which is an advanced language and problems will happen, so you will need to be able to fix them. If you plan on installing games, it gets much more complex.

Unless you want a forum with default settings and no mods, you should start learning how to write code.
Report, edit, etc...Posted by Mp)7-7 on 2006-05-06 at 14:18:20
I figured, but I learn fast, and when I set my mind to something, I like to get it done, and if I need help I can ask anyone on SEN!
Report, edit, etc...Posted by BeeR_KeG on 2006-05-06 at 15:11:22
With PHP half the problem is finding what code is causing it.
Do remember that while we're here to help you, at one time or another, it's best that you start fixing your own bugs and learning from them.

I learned PHP by trial and error, and it's better than asking Yoshi what I did wrong.
Report, edit, etc...Posted by Centreri on 2006-05-06 at 16:22:15
And much more polite happy.gif. I bought a PHP book that covers the basics so I don't have to be online to learn PHP. www.PHP.net is a valuable PHP resource, with a complete function list.
Report, edit, etc...Posted by BeeR_KeG on 2006-05-06 at 16:31:44
If you're coding in PHP and you don't have http://www.php.net bookmarked then you should go into a room full of burly men.

php.net is the official PHP manual in which you will find everything related to the functionality, syntax and pretty much everything related to PHP.

I'll also suggest http://www.phpfreaks.com/ for more proffesional help on PHP.
Report, edit, etc...Posted by Centreri on 2006-05-06 at 16:51:14
If I take you seriously, I have to go into a room full or burly men? I'd rather not. It's not hard to write www.php.net in the address bar tongue.gif.

I found a lot of good PHP tutorials at www.tutorialized.com.
Report, edit, etc...Posted by brutetal on 2006-05-07 at 14:04:11
There is also good tutorials at:
http://pixel2life.com
Report, edit, etc...Posted by Centreri on 2006-05-08 at 14:43:17
Yah. I use that often too. So, anything else, 7-7?
Report, edit, etc...Posted by Mp)7-7 on 2006-05-10 at 16:42:36
I was wondering how staredit made that cool heading at the top of every page, how do i do that with mine?
Report, edit, etc...Posted by brutetal on 2006-05-10 at 19:49:23
QUOTE(7-7 @ May 10 2006, 12:42 PM)
I was wondering how staredit made that cool heading at the top of every page, how do i do that with mine?
[right][snapback]483741[/snapback][/right]


Php, to display it every page.
Report, edit, etc...Posted by Mp)7-7 on 2006-05-11 at 16:43:45
CODE
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head><title>Staredit Network -> Replying in Help</title>
<!-- This prevents naughty opera from caching some of the pages and not seeing updates -->
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<style type='text/css'>


This is the code for the site at the top, what I dont understand is how the text Saredit Network can be written like that as a heading
Report, edit, etc...Posted by Pie_Sniper on 2006-05-11 at 17:55:52
Oh, that is an image. (http://www.staredit.net/style_images/layout/headerv3.jpg)
Next Page (1)