Code Newbie
News     Forums     Search     Members     Sign Up    

My Code Newbie
Username

Password

Articles/Snippets
ASP Classic
ASP.NET
C
C#
C++
HTML / CSS
Java
Javascript
Linux / BSD
Perl
PHP
Python
Ruby
SQL
VB 6
VB.NET

C.N. Friends
  Planet Rome

Link to Us!
Code Newbie
  Code Newbie
    forums
Go Back   Code Forums > Application and Web Development > PHP
User Name
Password

Reply
 
LinkBack Thread Tools Display Modes
Old 05-08-2002, 10:56 PM   #1 (permalink)
sde
Moderator
 
sde's Avatar
 
Join Date: May 2002
Location: us.ca
Posts: 4,397
sde is on a distinguished road
dreamweaver mx

Today i had a chance to experience dreamweaver mx on a titanium laptop. never before have i really liked dreamweaver , or most html editors for that matter, but mx has taken it to another level. it supports php now, so you can just use it in a text-editor environment while it does full syntax-hi-lighting for php code. it also acknowledges that you are using server-side scripting and requests the server info so you can preview your code with the push of 1 button ( F12 ) . when you press f12, it uploads and opens your file in the browser of your choice. The things that make a text-editor good for me is line numbering and syntax hi-lighting. now with the publish feature, and some pretty slick table-creation tools, .. i think i want to use dreamweaver.

however .. dreamweaver puts quotes around every little thing and when you use that html in php, every quote must be escaped with a backslash. I've seen editors that allow you to highlight a string of text and it will escape all necessary characters, .. but i didn't find that in dreamweaver. i didn't spend too long with it, but that for sure would be icing on the cake.

oh yeah.. and once again osx is a dope os. the pulsating ok buttons are pretty slick. i wish macs weren't so expensive.
__________________
sde is offline   Reply With Quote
Old 05-09-2002, 05:53 PM   #2 (permalink)
revolution
Legend in my own mind
 
revolution's Avatar
 
Join Date: May 2002
Location: florida
Posts: 618
revolution is on a distinguished road
Send a message via AIM to revolution
i played with DW for a bit when the wife first got it, but ive never been really any good with wysiwyg editors. And id really like to get my hands on OS X and see what all the hubub is all about. Ive heard it is really pretty cool.
__________________
Is it me or does the word abbreviation seem a little long?


registered user #193524 with the Linux Counter,
http://counter.li.org
revolution is offline   Reply With Quote
Old 05-10-2002, 03:32 PM   #3 (permalink)
MiLady Mirlyn
lady gamer
 
MiLady Mirlyn's Avatar
 
Join Date: May 2002
Location: Right behind you...
Posts: 92
MiLady Mirlyn is on a distinguished road
ooohhh, a new dreamweaver?!?! I'd love to check that out!

I'm self taught with it and got pretty good with it - for the most part.

Where'd you get it?

I did have some problems with DW, though... but I may have been doing something wrong...

When I'd try to edit a page and add an image, it would re-write the image address to where it was located on my computer instead of the address I typed in there from the server...

Does that make sense? any idea what I was doing wrong?
__________________
Gun control is being able to hit your target!

MiLady Mirlyn is offline   Reply With Quote
Old 05-10-2002, 05:26 PM   #4 (permalink)
sde
Moderator
 
sde's Avatar
 
Join Date: May 2002
Location: us.ca
Posts: 4,397
sde is on a distinguished road
hmmm .. good question .. i've never used dreamweaver except that one time.. i do have a friend who uses it for pretty much everything. he's pretty good at it. i'll have him check out the forum when i get back to work on monday. hopefully he'll sign up and give us the answer.
__________________
sde is offline   Reply With Quote
Old 05-11-2002, 04:34 PM   #5 (permalink)
MiLady Mirlyn
lady gamer
 
MiLady Mirlyn's Avatar
 
Join Date: May 2002
Location: Right behind you...
Posts: 92
MiLady Mirlyn is on a distinguished road
Cool, thanks! I look forward to it!

:rock:
__________________
Gun control is being able to hit your target!

MiLady Mirlyn is offline   Reply With Quote
Old 05-14-2002, 09:11 AM   #6 (permalink)
dubsonic
Registered User
 
Join Date: May 2002
Posts: 10
dubsonic is on a distinguished road
Send a message via AIM to dubsonic
Editing existing pages/images

Dreamweaver/UltraDev uses a local 'www root' folder to ensure that all links and relative directories stay intact. In order to edit an existing web page, you first must 'define a site' within Dreamweaver, and then FTP the page, along with any dependant files, to your local 'www root' folder. Then you can easily update images, rename files, and/or completely rebuild the page! Just FTP back to the server when you are done. Remember to use relative links whenever possible.

Hope this helps,

Joe
__________________
dubsonic is offline   Reply With Quote
Old 05-14-2002, 02:53 PM   #7 (permalink)
MiLady Mirlyn
lady gamer
 
MiLady Mirlyn's Avatar
 
Join Date: May 2002
Location: Right behind you...
Posts: 92
MiLady Mirlyn is on a distinguished road
That makes more sense... thanks!!

"Light dawns on marble head!"

one question:

what would be the "www root" folder be in Win 2K Pro? Is there a standard Windows folder that Dreamweaver would use? Or doI just have to use the ol' Trial & Error formula?

Any idea?

Thanks again! :rock:
__________________
Gun control is being able to hit your target!

MiLady Mirlyn is offline   Reply With Quote
Old 05-14-2002, 03:10 PM   #8 (permalink)
Admin
$_['Your_Mom'];
 
Admin's Avatar
 
Join Date: May 2002
Location: Santee
Posts: 627
Admin is on a distinguished road
you can use any folder you like as your root folder. just gotta tell dreamweaver where that folder is

Admin
__________________


Urban Clothing
Admin is offline   Reply With Quote
Old 05-14-2002, 03:17 PM   #9 (permalink)
sde
Moderator
 
sde's Avatar
 
Join Date: May 2002
Location: us.ca
Posts: 4,397
sde is on a distinguished road
i think what he means by the "www root" folder is the directory where your project is.. for example:

here is my website.. it is in C:\websites\codenewbie

the files in this folder are:
index.html
num.html
contact.html

then i have another directory in this folder called "images":
images

so on my "www root" folder in this case will be C:\websites\codenewbie .. ***Any images on your site must be INSIDE your "www root" folder.

If the image is within your www root directory (or sub-directory - images), then i can make a "relative" path... ie:

<img src=images/picture.jpg>

the address "images/picture.jpg" is relative to your www root folder cause it is inside of it.

lets say you put your image on your desktop .. then the image path could not be relative cause it's not inside... then your image embed tag might look like this:

<img src=C:\Documents and Settings\MeMe\Desktop\picture.jpg>

this is probably the type of thing that was happening for you cause your image was outside your www root directory.


does this make sense?
__________________
sde is offline   Reply With Quote
Old 05-14-2002, 03:32 PM   #10 (permalink)
MiLady Mirlyn
lady gamer
 
MiLady Mirlyn's Avatar
 
Join Date: May 2002
Location: Right behind you...
Posts: 92
MiLady Mirlyn is on a distinguished road


(insert "ping" sound)

AH HA!!!!!


Quote:
does this make sense?
More and more with everyone's help!!
__________________
Gun control is being able to hit your target!

MiLady Mirlyn is offline   Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Dreamweaver rdove Lounge 8 02-20-2003 06:24 AM
Dreamweaver MX sde HTML, XML, Javascript, AJAX 4 08-03-2002 03:57 PM


All times are GMT -8. The time now is 06:38 PM.


Powered by vBulletin Version 3.6.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.0.0 RC8





Copyright © 2000-2006, Milano Interactive
Web Hosting provided by Portal 360 Web Hosting
Open Circle