Page 1 of 1

Who have a good html/php tutorial?

Posted: Mon Oct 06, 2008 6:19 pm
by Tasper
i want to make a page in my 'new' software called Dreamweaver but i dont know how to use 'em.. well, who can help me to get a good guide of html/php on this software

t_wai Thx t_wai

Re: Who have a good html/php tutorial?

Posted: Mon Oct 06, 2008 6:44 pm
by I_H8_U_M8
Umm try http://www.compsci.ca the people there will most likely help you but you need an account.
it's also a good place for programmers such as my self ;p;

Re: Who have a good html/php tutorial?

Posted: Tue Oct 07, 2008 9:40 am
by 3ICE
I learned a lot from http://www.w3schools.com/ They follow the w3 standards, which is really appealing to me. No bogus code in their tutorials for sure!

--3ICE

Edit: I am a visual type, I like learning from videos, so called "screencasts". I have over 10GB of tutorials archived on my hard drive. If you are a visual type too, I suggest heading over to http://phpvideotutorials.com/ and after you are through all their videos, just use http://php.net/ for future reference. There is nothing more to it, you can pick up html in basically a few hours and php is lets say a full day of practicing before you master it.

Re: Who have a good html/php tutorial?

Posted: Mon Nov 24, 2008 10:19 pm
by YzRiDeR72
Sorry off topic kind of although if you have the CS3 Suite (I haven't used CS4 yet) it comes with over 100 tutorials on all the various programs included such as
--Adobe:
  • Photoshop CS3 Extended
    Illustrator CS3
    Fireworks CS3

    Acrobat 8 Professional
    Flash CS3 Professional
    Dreamweaver CS3
    Contribute CS3

Red-Image Editing Programs
Or perhaps since it involves Dreamweaver, should have i posted this at:?
[c enter]viewtopic.php?f=33&t=132[/i frame][/c enter]

Re: Who have a good html/php tutorial?

Posted: Tue Dec 02, 2008 10:28 am
by YzRiDeR72
Please do go into what makes it an infinite loop?

Re: Who have a good html/php tutorial?

Posted: Tue Dec 02, 2008 10:41 am
by 3ICE
Some browsers have protection against infinitely looping iframes. Some don't.

An infinitely looping iframe is a regular html document with an iframe tag that has the src attribute set to itself, for example:
If the source of "http://example.com" was:
<html><body><iframe src="http://example.com" /></body></html>
Then it would be in infinite loop.

You posted:
http://forum.3ice.hu/viewtopic.php?f=33&t=132[/i frame]
on the page: http://forum.3ice.hu/viewtopic.php?f=33&t=132
Notice how the links are the same? This puts the browser in a loop that never stops. The page keeps calling itself forever unless the browser prevents it.

Edit: This makes an infinite loop on ANY page:

Code: Select all

<script type="text/javascript">document.write("<iframe src=\""+location.href+"\" />")</script>