corsasport.co.uk
 

Corsa Sport » Message Board » Off Day » Geek Day » Website building...


New Topic

New Poll
  Subscribe | Add to Favourites

You are not logged in and may not post or reply to messages. Please log in or create a new account or mail us about fixing an existing one - register@corsasport.co.uk

There are also many more features available when you are logged in such as private messages, buddy list, location services, post search and more.


Author Website building...
Dan
Premium Member

Avatar

Registered: 22nd Apr 02
Location: Gorleston on Sea, Norfolk
User status: Offline
27th Jan 11 at 15:47   View Garage View User's Profile U2U Member Reply With Quote

As ive now built a couple of magento based stores, im slowly learning html/css etc,but im far from building sites from scratch.

If i wanted to learn it, wheres the best place to learn? Can u dolike an online/at home training course?




Adult GiftsClick here to vist us
A2H GO
Member

Registered: 14th Sep 04
Location: Stoke
User status: Offline
27th Jan 11 at 16:05   View User's Profile U2U Member Reply With Quote

I spent all weekend on onestoptutorials.com in an attempt to create a basic template for my ebay store using dreamweaver. Even using their step by step giude it was really difficult. Ended up getting a free template online and editing bits of the code myself.
Whittie
Member

Registered: 11th Aug 06
Location: North Wales Drives: BMW, Corsa & Fiat
User status: Offline
27th Jan 11 at 16:33   View User's Profile U2U Member Reply With Quote

Buy two books, php & dreamweaver for dummies
adiohead
Member

Registered: 28th Sep 01
User status: Offline
27th Jan 11 at 16:40   View User's Profile U2U Member Reply With Quote

I have Dreamweaver for Dummies.

Couldn't be bothered to read it.
AndyKent
Member

Registered: 3rd Sep 05
User status: Offline
27th Jan 11 at 17:26   View User's Profile U2U Member Reply With Quote

I've got an amazing PHP reference book. About 700 pages long but brilliant for when you want to find out how to do something specific.

Best advice is to find a template and muck around with it until you get something you like. Nothing better than trying stuff out rather than reading tutorials I find.
ed
Member

Registered: 10th Sep 03
User status: Offline
27th Jan 11 at 18:36   View User's Profile U2U Member Reply With Quote

Why would you buy a PHP book? It's open source and the whole manual is online!
noshua
Member

Registered: 19th Nov 08
User status: Offline
27th Jan 11 at 19:00   View User's Profile U2U Member Reply With Quote

As above, if you put in any of the elements there's loads of examples. It's piss easy to pick up once you know the basics.

I'd have a look at some quality coded templates and mess about with them. Get a decent editor like Notepad++
AndyKent
Member

Registered: 3rd Sep 05
User status: Offline
27th Jan 11 at 19:16   View User's Profile U2U Member Reply With Quote

Far easier for me to look at a book with the code on screen than flicking backwards and forwards.

Not all of us have the luxury of multiple screens
noshua
Member

Registered: 19th Nov 08
User status: Offline
27th Jan 11 at 19:21   View User's Profile U2U Member Reply With Quote

I use a 15.6" laptop screen to code on, it's by far not the ideal setup - just open multiple tabs and get reading
Dan
Premium Member

Avatar

Registered: 22nd Apr 02
Location: Gorleston on Sea, Norfolk
User status: Offline
27th Jan 11 at 19:48   View Garage View User's Profile U2U Member Reply With Quote

I have notepad++ and i have dreamweaver.

I just dunno where to start. I dont even really know what i want to be able to do.


Adult GiftsClick here to vist us
noshua
Member

Registered: 19th Nov 08
User status: Offline
28th Jan 11 at 17:47   View User's Profile U2U Member Reply With Quote

http://www.w3schools.com/php/default.asp

look through some of the examples and just adapt them to different things
ed
Member

Registered: 10th Sep 03
User status: Offline
28th Jan 11 at 22:05   View User's Profile U2U Member Reply With Quote

quote:
Originally posted by AndyKent
Far easier for me to look at a book with the code on screen than flicking backwards and forwards.

Not all of us have the luxury of multiple screens

Copy and pasting code snippets from a paperback is so good, really glad my computer can do that.
Dan
Premium Member

Avatar

Registered: 22nd Apr 02
Location: Gorleston on Sea, Norfolk
User status: Offline
31st Jan 11 at 11:04   View Garage View User's Profile U2U Member Reply With Quote

Seeings as this could be a useful place to start...

Ive just purchased and set up a simple fourm using phpbb for the cs lot who race on gt5

I now need to set up a simple page (like the cs first page) which can be filled with aload of text and a big click to visit forum banner.

Whats my best way going about doing this in a way where i can learn the most


Adult GiftsClick here to vist us
ed
Member

Registered: 10th Sep 03
User status: Offline
31st Jan 11 at 11:45   View User's Profile U2U Member Reply With Quote

With any page like that you need to decide what data you want to display and where it comes from. I'm not sure how PHPBB works but in it's simplest form you could display a post count by counting the number of rows from the posts table in from the websites database like so:

code:

<?
require_once('database-connect.php');
$q=mysql_query('SELECT * FROM posts');
?>



(database-connect.php will contain the database authentication script).

To get that on the page you'd then put something like:

code:

Post Count: <? echo mysql_num_rows($q); ?>



You could put just those few lines in a page called welcome.php and then put the following in .htaccess:

code:

DirectoryIndex welcome.php



Just figure out what you're trying to do first and then get coding. All the stuff you need to know about PHP is on http://www.php.net/ and then if you're trying to solve a specific problem you can do a search and I'm sure you'll find a tutorial or a library which has what you need.
Dan
Premium Member

Avatar

Registered: 22nd Apr 02
Location: Gorleston on Sea, Norfolk
User status: Offline
31st Jan 11 at 12:10   View Garage View User's Profile U2U Member Reply With Quote

Ah, the cs main page has gone now lol...

I think i explained wrong, i only want a simple html page, which shows a logo, a click to visit forum banner, and a big area of text to fill with seo content.


Adult GiftsClick here to vist us
Whittie
Member

Registered: 11th Aug 06
Location: North Wales Drives: BMW, Corsa & Fiat
User status: Offline
31st Jan 11 at 12:13   View User's Profile U2U Member Reply With Quote

Do it in Dreamweaver. Mega easy if you use design view.
ed
Member

Registered: 10th Sep 03
User status: Offline
31st Jan 11 at 12:36   View User's Profile U2U Member Reply With Quote

Then all you need to do is build the page and take note of the DirectoryIndex part of what I said
ed
Member

Registered: 10th Sep 03
User status: Offline
31st Jan 11 at 12:36   View User's Profile U2U Member Reply With Quote

Could actually build the page in Photoshop or Illustrator too is you feel like it...

 
New Topic

New Poll

  Related Threads Author Forum Replies Views Last Post
website help?????? 1.0to2.0 Geek Day 5 905
10th May 03 at 00:25
by CorsaJunkie
 
website building help! antscorsa Geek Day 6 799
12th Jul 07 at 17:29
by loafofbrett
 
Website gallery help..... AndyKent Geek Day 2 935
6th Oct 08 at 07:34
by aPk
 
building a new website richard_cooper Geek Day 7 1408
4th Aug 09 at 11:48
by Laney
 
website building day bubble Geek Day 18 1456
21st Jul 10 at 12:17
by ed
 

Corsa Sport » Message Board » Off Day » Geek Day » Website building... 30 database queries in 0.0196240 seconds