| Author |
|| New Questions ||
|
|
| dodo2tt 2001-06-27, 9:31 am |
| Flash vs Shockwave : In what situations would a web site choose one over the other ?
Also, Which URL is technically correct:
http://www.examnotes.com/ OR http://www.examnotes.com
Which file names are correct for a web document:
index.htm OR
index.html
What's PHP mostly used for ?
Is PHP serverside or clientside scripting ?
Is PHP or ASP embedded in an html document for the browser to interpret? | |
|
| Flash vs Shockwave : In what situations would a web site choose one over the other ? Don't know.
Which URL is technically correct:
http://www.examnotes.com/ OR http://www.examnotes.com
They both look OK to me, but I would go with the latter.
Which file names are correct for a web document:
index.htm OR
index.html
Both look OK to me, I think I would choose the latter, though (I think the 'htm' was only to satisfy DOS's 8.3 rule).
What's PHP mostly used for ?
Displaying web pages.
Is PHP serverside or clientside scripting ?
Serverside.
Is PHP or ASP embedded in an html document for the browser to interpret?
Yes. | |
| Webmaster 2001-06-27, 1:42 pm |
| PHP is NOT interpreted by the browser, it is interpreted by the php engine on the server, that's why it is server side, not browser side.
As far as .htm or .html, both types are used on the Internet. FrontPage creates pages with .htm extensions by default. | |
|
| I knew it was interpreted by the server, but I thought I saw some coding like:
<html><head><title>PHP Test</title></head>
<body>
<?php echo "Hello World<p>"; ?>
</body></html>
to render a page? This must be interpreted by the server and then sent back to the client, right? | |
| nettech 2001-06-28, 9:23 am |
| Right!
quote: Originally posted by Randy
I knew it was interpreted by the server, but I thought I saw some coding like:
<html><head><title>PHP Test</title></head>
<body>
<?php echo "Hello World<p>"; ?>
</body></html>
to render a page? This must be interpreted by the server and then sent back to the client, right?
|
|
|
|