Lozbo
Sep 6 2005, 07:38 PM
| | I dont usually work with templates. In fact i have never created one, but where i work they used to have dreamweaver templates, so i had to keep to it.
Truth is i havent actually modified any, couse i like better working with php includes of content as menus, headers, footers and other kind of info within each page whos going to have that section, instead of having a dreamweaver template.
I dont know if im making my self clear, but i dont know what would you have to say about it, which one you think its better? I mean, i know that they are different and that the main difference is that in order to use the includes, the server must support php... |
Reply
Unregistered 015
Sep 6 2005, 08:16 PM
You are using templates even if you use includes man!! C'mon, html, css (it is PRESENTATION) has to be somewhere in the code. It does not matter if it is php or html. You must have something to look at! If you use includes, the code for look of includes in includes themself, and if you prefer clean html (no php) then the code in html determines the look of your site (and in css). If this answers your question, you still have a lot to learn, about web sites, and the concepts behind it (no hard feelings). And this is the right place to do just that! Ask away!
Reply
cragllo
Sep 6 2005, 09:17 PM
You have never used dreamweaver templates ciroxyz. I prefer to use php Includes as it gives you alot more freedome. But dreamweaver treats includes as templates sometimes. And I think its you who needs to learn alot more (no hard feelings). My sites are clean html, with php. if you use php at all, it does not show for the end user, the php code is processed by php (the software) and the output is html. BUT you need to tell php what the outputs can be, so, all clean valid html  and css of corse.
Reply
Lozbo
Sep 6 2005, 09:21 PM
Guess i didnot make my self clear, couse i was talking especifically of DREAMWEAVER templates, i understand that its another kind of "template" while working with css and php, so i asked if you were working better with dreamweaver built in templates or the other way around... Yes, i certanly need to learn a lot, i know nothing about nothing, i believe we all have always something to learn, as we do not born knowing, nor do we ever achieve total knowledge  hehe thanks cyroxyz, obiously no hard feelings, i apreciate help from people who knows better than me, and cheers. I have read some things and im still reading tutorials, and have a lot of stuff to documentate myself, and of course: there is always the good old web (and the forums beneath it:)).
Reply
Tyssen
Sep 6 2005, 10:28 PM
I think as people become more experienced with building websites they discover that Dreamweaver's not really the best tool for the job and start hand-coding all their sites, so for more experienced designers my guess would be that includes (whether it be PHP, ASP, SHTML or what) would be the favourite.
Reply
Unregistered 015
Sep 6 2005, 10:36 PM
Sorry my mistake. I tought he was talking about regular html templates
Reply
guangdian
Sep 7 2005, 02:15 AM
and i think you would learn some xhtml and xml standard,and css. this standards will fit for all the browsers,then it haz a simple tag of the xhtml ,this would make simple beautiful pages.you would go here oswd.org means opensource web design
Reply
arboc7
Sep 7 2005, 02:37 AM
PHP includes all the way! I find Dreamweaver templates much too bulky and cluttered for my taste.
Reply
epox
Sep 7 2005, 06:58 AM
i don't use neither, but i have an idea of how it works, and i think both are equal or something like that, please forgive me if i don't know of what i'm talking: *in one hand, nothing better than dynamical content, and i think php is the best way you can achieve it. *but, i'm not sure at all, that makes the search engines can't see the meta tags, and all about SEO. and that's way i think you could use it together. i'm new in web design, please if someone knows how to do it with php, please post me where to find that info, also with dw, thanks!
Reply
Lozbo
Sep 7 2005, 05:05 PM
QUOTE(epox @ Sep 7 2005, 12:58 AM) *but, i'm not sure at all, that makes the search engines can't see the meta tags, and all about SEO. What do you mean? if you use dynamic content meta tags are invisible to search engines? As far as i know it does not matter, as server side coding (like php) renders itself in the server and runs on clients browser as normal html (or whatever you specify to print), so if you include for example a file named "meta.php" with all the meta tags defined in it (which i find myself cool) and then include it in each of your pages that need that given set of meta tags, it should be visible by all the search engine spiders, as its normal html what is displayed. About the templates, i find it easier and more customisable working with php, but i could not say as im not and advanced user for dreamweaver templates, thats why i asked if any one knew...
Reply
Latest Entries
Ofcource PHP. Go for it. Good luck.
Reply
Lozbo
Sep 19 2005, 08:38 PM
QUOTE(Tyssen @ Sep 8 2005, 12:58 AM) CODE Sub WriteHeader(pageTitle,metaDescription) <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title><% = pageTitle %></title> <meta name="description" content="<% = metaDescription%>" /> </head> <body> end sub
Right, i know how could i translate that into php. I dont know why but i just thought it would be harder, but this looks really simply and should save a lot of work in some cases. Thanks!
Reply
jae-unit
Sep 18 2005, 10:04 PM
I prefer PHP because its a lot easier to use then templates.
Reply
littleweseth
Sep 11 2005, 04:11 AM
PHP includes. Dreamweaver templates, last time i checked, used comments and stuff in normal HTML to define editable areas, and <!-- --> is very unpretty to say the least. (why couldn't they define // in HTML?) Also, with dreamweaver templates, the disadvantage is this : you need dreamweaver. PHP is free, whereas dreamweaver is expensive and not everyone has it - though if you've already paid for it, this is kind of a moot point.
Reply
Tyssen
Sep 8 2005, 06:58 AM
Well I usually work in ASP so not sure how it goes in PHP but a sub (sorry meant sub not function) in ASP works like this: CODE Sub WriteHeader(pageTitle,metaDescription) <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title><% = pageTitle %></title> <meta name="description" content="<% = metaDescription%>" /> </head>
<body> end sub
Then on your page, do this: CODE <% WriteHeader "Your page title","Your meta description" %> The bit in the quote marks in the call to the sub gets input into the sub which prints that and the rest of the HTML. You also need an include on each page that contains the sub.
Reply
Similar Topics
Keywords : dw, templates, php, includes, prefer
- A Couple Of My Templates.
(1)
Question About Php Includes
How would you include a frame AROUND the page? (17) I'm trying to make a layout for my website for the areas that aren't occupied by Wordpress,
and I want to use PHP includes to do it. So far, I know how to use tags, like this: CODE
<table> <?php include "sidebar.php" ?> </table> This is okay,
but I want to be able to include everything in one "container" file. Kind of like this: For every
HTML file that I include: CODE <html> <head> <?php include
"frame.php" ?> <title></title> </head> <body> <!....
Html/css Website Hosting Templates Request - You Will Be Paid Off
Website hosting template request (6) I am using cpanel and WHM, and i want a hosting template. Well i have dreamweaver and photoshop,
i have found pretty nice looking hosting templates, but what i want is a unique, original and
professional like ( http://www.resellerguide.com/resellerhosti...plate6/big.jpg) that template is
really neat, but since its open to public they could be like 20-50 people using it, and this type of
template is hard to customize , even with photoshop. So if someone could create something like this,
with the theme a little different , but i love his layout, instead of the nav and....
Windows, Linux Or Mac Osx?
Which OS do u prefer. (25) Well, I've tried Ubuntu Gutsy and Windows Vista. I liked Ubuntu but I think that it needs more
work to become a "real" OS, I mean, u need to know many code to can use it properly, I have 2PCs in
one I've Windows Vista (my main laptop) and in my secondary PC (desktop) I've Ubuntu and
Windows XP (dual-boot). Give ur opinion about this OS.!....
Which Final Fantasy Game Do You Prefer
all known final fantasy games (2) please take the time to explane as to why you chose the option you did.....
Reaon-sony Acid-orion Or Fruity Loops
which do you prefer and which benifits the upto date producer (1) OK youve all heard about how manny bits of software are out there for making music rite, i meen
youhave orion i havnt heard much about that as it apparently seams to be a low end product thers
reason definatly a high end product thers sony acid pro anouther high ender and theres fruity
loops around midway id say but thats not all there are loads of programs that allow you to create
music the question is do you use these programs and if so what one. i personally use fruity loops
as it has a wide veriety of plugins wich enables the user to be as creative as possib....
Confirmation Code For Registration Users
Why a confirmation code doesn't show on non-subsilver templates? (3) So yeah like the title states, I'm using this other template (fi subgreen) and for some reason
when I go on the registration page of my forum it won't show the confirmation code. Is there
something specific I'm supposed to edit to show this? Let me know the specifics please. I
appreciate it, thanks. specific link: http://legendsofhyrule.trap17.com/zelda/pr...amp;agreed=true
to get fisubgreen go to www.phpBBhacks.com and type in fisubgreen.....
[php]diffrent Type Of Template [id] With Includes ;)
(13) ?> Example <!-- A { color: #003366;
text-decoration: none; } A:link { color: #003366; text-decoration: none; }
A:visited { color: #003366; text-decoration: none; } A:active { color:
#54622D; } A:hover { color: #54622D; } BODY,TD,TR{ font-family:
verdana, arial, sans-serif; color:#000; font-size:11;
font-weight:normal; } .banner { font-family: georgia, verdana, arial, sans-serif; ....
Free Web Site Templates
Free Web Site Templates (0) Free Web Site Templates If you want to create your own website or to change the image of your old
web site, then visit the link above and download all the web site templates you want. No
registration necessary, no download limits and most important: YOU DON'T HAVE TO PAY. More of
this: you don't have to browse our site to search for the right template, preview it and then
download it; all templates are packed in archives of maximum 100MB and hosted on rapidshare or other
file hosting server. We only provide the links to download them, so take them, unpack th....
Please Someone Help With Css Templates
Templates problem (4) Hi Please can anyone help me with css templates I got free css templates from freewebtemplates.com
..Then I uploaded them into the public_html folder and I also uploaded images into the images
folder. But when I open my site the images aren't displayed and the setting of the template is
also disturbed. So do I have have to change something in the css style sheet or what I am doing
wrong. Please someone help me. You could check my website here and then Please give the possible
steps which I could take......... /smile.gif" style="vertical-align:middle" emoid=":)"....
Php Scripts And Website Templates
php scripts and website templates (6) I need some help. I´m trying to start my own website but I´m out of ideas about the design... The
site should look something like this (click to view) Like I said I´m out of ideas so if any of you
knows of a good and free web template that looks like my site please post the link to it. I´m also
looking for some free php scripts (classified ads, fotolog, youtube, banner exchange, link exchange,
adbux) so if you know where I can find any of those scripts please let me know. Thanks in advance.
"I Need Some Help" isn't a good topic title. Changed to a more descript....
Blogger Templates
Sites and Your Favorites (9) You can post a blogger template site or/and your favorite template. My favorite site is here. My
favorite template is Playstation which is in the game section. Heres what it looks like. ....
Free Professional Website Templates
(12) Design Load is a Professional website Templates design website, they offer a few professional
website themes that cannot be found elsewhere, this page also lists a few website graphics. All the
images are provided with their proper PSD source and Font files.
http://www.designload.net/free.html ....
Excellent Free Website Templates
(16) Site also includes 60 free logo templates, 63 free banner templates, 84 free newsletter templates,
website arrows, abstract images, and much more. Fantastic resource...
http://www.templatesbox.com/templates.htm ....
Free Website Building Graphics.
Templates, backgrounds, seamless tiles and desktop/wallpapers. (21) Free graphics and templates to use in designing your website and personalizing your computer
desktop. There are over 100 web sets to choose from in multiple themes. You can also find
backgrounds, seamless background tiles, desktop/wallpapers for your computer and greeting cards for
occasions to download or link to. Everything is free at this site. /wink.gif"
style="vertical-align:middle" emoid=";)" border="0" alt="wink.gif" /> My Website ....
Fable: The Lost Chapters
which side do you prefer? (10) It is better to be evil than good? Do you earn more (money etc.) if you are evil? and how will my
character look if i am evil? And one thing more: How can i enter the arena? (and fight with the
people there) It's very important that you enter both title and description since there's
another topic with the same title with different discussion. ....
[photoshop]grunge Abstract Sig ~ Samma
Includes Multi Color Method (9) Im not sure if this has been done before... I havent seen a grunge abstract tut before, but anyways
here it is /tongue.gif' border='0' style='vertical-align:middle' alt='tongue.gif' /> Outcome:
1. Fill the canvas with black, and brush with white using a grunge brush. After you have
completely filled the whole layer with the grunge brush, go to Image > Adjustments > Auto Contrast,
then go to Filter > Sharpen > Sharpen Edges, then finaly go to Edit > Fade Sharpen Edges and do an
opacity of 50%. Make a new layer. Repeat Step 1. another 2 times using different gru....
Reading Mode
prefer which one (7) well,book is people's friend and source from life of people.we grow up with books exactly with
knowledge.so reading book is a way to own knowleage...now we read book not only by reading real book
but also reading on pc or palm.for me,because the need of my specialty,i must use the laptop in
class,reading or writing occur always on pc.to read real paper book become less...so get a habit of
reading by screen gradually. /sad.gif' border='0' style='vertical-align:middle' alt='sad.gif' />
but i still prefer reading real books. what about you?do you use computer frequ....
What Eye Colour Would You Prefer?
If you could change it? (92) Oooh! Oooh! I like.... I DUNNO!!!! /blink.gif' border='0'
style='vertical-align:middle' alt='blink.gif' /> /blink.gif' border='0'
style='vertical-align:middle' alt='blink.gif' /> /blink.gif' border='0'
style='vertical-align:middle' alt='blink.gif' /> I JUZ DUNNO!!!! /ohmy.gif'
border='0' style='vertical-align:middle' alt='ohmy.gif' />
AHHHHHHHHHHHHHHH!!!!!!!!!!!!!!!!!
;!!! /ohmy.gif' border='0' style='vertical-align:middle' alt=....
Mambo Templates
Best templete sites, how to make own... (9) This thread is for disscusing Mambo Open Source CMS (MOS). Post any links to Mambo related sites
(template sites, module sites, or whatever mambo). If you have tutorials for creating own templates
post here. I personally need some tutorial for using CSS when creating Mambo templates, and some
reference to all the classes, divs etc (e.g. mainmenu, button...) of modules (menus, polls etc).....
Coke Music Vs Habbo Hotel
which would you prefer (31) /cool.gif' border='0' style='vertical-align:middle' alt='cool.gif' /> I'd prefer Coke
Music over Habbo Hotel because..... /ph34r.gif' border='0' style='vertical-align:middle'
alt='ph34r.gif' /> IT'S FREE!!!!!!!!!!!!
/unsure.gif' border='0' style='vertical-align:middle' alt='unsure.gif' /> The characters also
known as V-Egos look more realistic and human like than Habbo Hotel's blocky people
that almost exactly like thos huge LEGO people made for 3 year-olds /bli....
Contact Lenses Or Glasses?
Which do you prefer? (70) Hey all! Just thought I'd ask everyone on the forum whether they use (or prefer to use)
contact lenses or glasses. Here's my story - After discovering that I was near-sighted while
taking a visual test for my driver's license, I went to the optometrist and bought my first pair
of glasses. Since then, I've been wearing glasses (and going through several different frames)
for about 15 years until I finally decided to wear soft contact lenses. Certainly, there are pros
and cons to each. Glasses are (overall) less expensive since you only have to repl....
Dreamweaver Vs Frontpage
Which do you prefer? (45) Dreamweaver MX 2004 is probably the best program I beleive ever made. It has such simple controls
and if you know HTML and flasah you can design any web layout you want as long as you have a good
imagination. And the unique layer sytem is just amazing. When I first doewq Frontpage isa alsao a
very good program but the fact it isa not truly flasah enabled like dreamweaver is, makes it
extremly flawed.....
Open Source Web Design
templates for everybody (50) are you ready to share your ideas on the web but too busy to create a decent layout? browse these
template thumbnails: http://oswd.org/browse.php check out the most popular downloads:
http://oswd.org/most_popular.phtml visually-appealing and crisp designs. /smile.gif' border='0'
style='vertical-align:middle' alt='smile.gif' /> no long download waits either, so no problem for
dialup users. enjoy! /tongue.gif' border='0' style='vertical-align:middle' alt='tongue.gif' />
(want this pinned? pm an admin or another mod /tongue.gif' border='0' style='vertica....
Which Do You Prefer?
Xbox 360/PS3 (9) I would prefer PS3 just because I'm a PS owner.....
Which Forums Would You Prefer?
Good for people creating communities... (13) I'm using InvisionFree board... I wanna know what others think about other boards and their
reasons for it.......
What do you prefer: Windows or Linux?
(84) Hello!!
I'm an amateur in computers.
I gained an computer this year and it comes with WINDOWS
XP.
But my friend told me that the Linux is better than Windows.
Is it true??....
Dell Or Hp ?
Which is the best computer brand you prefer ? (52) I prefer DELL... The service is good... Esp after sales services... I heard HP lock up their
hardwares so user cannot upgrade parts themselves.. but to go through HP for upgrades... Thats
hurts.......
Templates
download Nice Template (10) I Fint this Template for u /biggrin.gif' border='0' style='vertical-align:middle'
alt='biggrin.gif' /> http://xinfo.3dmaster.net.ru/templates/Tem...6471-SPK100.rar
http://xinfo.3dmaster.net.ru/templates/Tem...6417-SPK100.rar
http://xinfo.3dmaster.net.ru/templates/Tem...6221-SPK100.rar
http://xinfo.3dmaster.net.ru/templates/Tem...6370-SPK100.rar
http://xinfo.3dmaster.net.ru/templates/Tem...6419-SPK100.rar
http://xinfo.3dmaster.net.ru/templates/Tem...6446-SPK100.rar
http://xinfo.3dmaster.net.ru/templates/Tem...6207-SPK100.rar hihi I Find th....
Review My Templates
2 variations (18) Hey all, I have a few templates for your reviewing pleasure. Please, take the time to look at them
and let me know what you think. The Below images are the two templates I have finished and are ready
to be scripted together; but I always like a review before I bother to script them... click on
images to enlarge Template Variation 1: Template Variation 2: Later, -- J.....
Looking for dw, templates, php, includes, prefer
|
|
Searching Video's for dw, templates, php, includes, prefer
|
advertisement
|
|