 | New Page |  |
Posted: 08/07/2007 9:18 AM |
|
|
|
|
|
| Citation |
| Posts |
1253 |
| Word Cnt. |
68,166 |
| BDay |
Nov 9 |
| Sign |
Scorpio |
| Sex |
 |
|
|
|
Joined: Jan 06, 2006
Local time: 6:13 PM
|

|
|
|
|
 |
I'm going to add a links/affiliate page to my ticker site but I'm just not getting it. I'm trying to follow some html tuts but I'm missing something as all I get are errors.
I can add a clickable banner ok but its just got errors all around it.
My page will be links.php. |
|
|
 |
 |
| Back to Top |
|
|
 | Re: New Page |  |
Posted: 08/07/2007 11:51 PM |
|
|
|
|
|
| Site Admin |
| Posts |
30757 |
| Word Cnt. |
2,628,690 |
| BDay |
Jul 28 |
| Sign |
Leo |
| Sex |
 |
|
|
|
Joined: Sep 25, 2004
Local time: 2:13 PM
Location: St Pete, FL
|

|
|
|
|
 |
What kind of errors are you seeing???
 |
|
|
 |
 |
| Back to Top |
|
|
 | Re: New Page |  |
Posted: 08/09/2007 5:55 AM |
|
|
|
|
|
| Citation |
| Posts |
1253 |
| Word Cnt. |
68,166 |
| BDay |
Nov 9 |
| Sign |
Scorpio |
| Sex |
 |
|
|
|
Joined: Jan 06, 2006
Local time: 6:13 PM
|

|
|
|
|
 |
|
|
 |
 |
| Back to Top |
|
|
 | Re: New Page |  |
Posted: 08/12/2007 1:03 AM |
|
|
|
|
|
| Site Admin |
| Posts |
30757 |
| Word Cnt. |
2,628,690 |
| BDay |
Jul 28 |
| Sign |
Leo |
| Sex |
 |
|
|
|
Joined: Sep 25, 2004
Local time: 2:13 PM
Location: St Pete, FL
|

|
|
|
|
 |
If you look at the code in the links.php fille, hopefully you will see why you are getting errors. It is definitely corrupted. There is a lot of junk code at the top and bottom of the file...
| Code:
|
{\rtf1\ansi\ansicpg1252\deff0\deflang2057{\fonttbl{\f0\fswiss\fch arset0 Courier New;}{\f1\fswiss\fcharset0 Arial;}}
{\*\generator Msftedit 5.41.15.1507;}\viewkind4\uc1\pard\f0\fs20 <html>\par
<head>\par
<title>Links</title>\par
</head>\par
<body>\par
<a href="http://babydreamz.net" target="_blank"><img src="http://i9.photobucket.com/albums/a83/FlossRWP/BabyDreamz/newbanne r.jpg" border="0" alt="Photo Sharing and Video Hosting at Photobucket"></a>\par
</body>\par
</html>\f1\par
}
|
 |
|
|
 |
 |
| Back to Top |
|
|
 | Re: New Page |  |
Posted: 08/12/2007 2:40 AM |
|
|
|
|
|
| Citation |
| Posts |
1253 |
| Word Cnt. |
68,166 |
| BDay |
Nov 9 |
| Sign |
Scorpio |
| Sex |
 |
|
|
|
Joined: Jan 06, 2006
Local time: 6:13 PM
|

|
|
|
|
 |
Why is that though?
What do I do to fix it, if anything?
 |
|
|
 |
 |
| Back to Top |
|
|
 | Re: New Page |  |
Posted: 08/12/2007 3:13 AM |
|
|
|
|
|
| Site Admin |
| Posts |
30757 |
| Word Cnt. |
2,628,690 |
| BDay |
Jul 28 |
| Sign |
Leo |
| Sex |
 |
|
|
|
Joined: Sep 25, 2004
Local time: 2:13 PM
Location: St Pete, FL
|

|
|
|
|
 |
What were you trying to do here? All of that code at the top down to the <html> is meaningless clutter. The \par parts that follow are meaningless too. The text that follows the ending </html> is pure clutter too...
If you want an example of how the top of the HTML code could look, look in your template overall_header.tpl file. That would give you a good example of the top part of an HTML file...
Also, if you downloaded and installed 1st Page 2000 per my instructions in the past, you can open a empty HTML page and it will give you the basic building blocks for building a web page. You would not add any code above the <!DOCTYPE code at the top or below the </html> at the bottom. The majority of your code would go between the <body> and </body> tags...
This is a basic HTML starting template:
| Code:
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Untitled</title>
</head>
<body>
//Your code goes here...
</body>
</html>
|
 |
|
|
 |
 |
| Back to Top |
|
|
 | Re: New Page |  |
Posted: 08/12/2007 11:15 AM |
|
|
|
|
|
| Citation |
| Posts |
1253 |
| Word Cnt. |
68,166 |
| BDay |
Nov 9 |
| Sign |
Scorpio |
| Sex |
 |
|
|
|
Joined: Jan 06, 2006
Local time: 6:13 PM
|

|
|
|
|
 |
Ahhh thanks NR
I knew I had no clue what I was doing  |
|
|
 |
 |
| Back to Top |
|
|
 | Re: New Page |  |
Posted: 08/12/2007 4:56 PM |
|
|
|
|
|
| Site Admin |
| Posts |
30757 |
| Word Cnt. |
2,628,690 |
| BDay |
Jul 28 |
| Sign |
Leo |
| Sex |
 |
|
|
|
Joined: Sep 25, 2004
Local time: 2:13 PM
Location: St Pete, FL
|

|
|
|
|
 |
LOL None of us start out as experts. Hopefully now that you know what it's supposed to look like, you will quickly become a web page design guru...
 |
|
|
 |
 |
| Back to Top |
|
|
 | Re: New Page |  |
Posted: 08/12/2007 5:02 PM |
|
|
|
|
|
| Citation |
| Posts |
1253 |
| Word Cnt. |
68,166 |
| BDay |
Nov 9 |
| Sign |
Scorpio |
| Sex |
 |
|
|
|
Joined: Jan 06, 2006
Local time: 6:13 PM
|

|
|
|
|
 |
Well thanks to you I have heaps more confidence and am not scared of trying new things now. Might not get it right but its the best way I learn
I was only saying tonight how I did a college course years ago in computing (excel/spreadsheets etc) and I was scared of even turning a pc on
 |
|
|
 |
 |
| Back to Top |
|
|
 | Re: New Page |  |
Posted: 08/12/2007 5:20 PM |
|
|
|
|
|
| Site Admin |
| Posts |
30757 |
| Word Cnt. |
2,628,690 |
| BDay |
Jul 28 |
| Sign |
Leo |
| Sex |
 |
|
|
|
Joined: Sep 25, 2004
Local time: 2:13 PM
Location: St Pete, FL
|

|
|
|
|
 |
Yes, I think fear is the biggest part that holds people back. Once you can get past the fear and start experimenting, you can make a lot of progress quickly. Just make sure to always make backups of files that you are modifying so that if any experiment goes south, you can quickly recover. I think most people have to learn that lesson the hard way...
 |
|
|
 |
 |
| Back to Top |
|
|
 | Information |  |
|