Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default PHP w/ Dreamweaver

    I just gained a client who's site was completely built off of Contributor using
    PHP scripting.

    When I went and downloaded their site into Dreamweaver some pages dont show
    text at all. And the images are all done in Fireworks and I am used to
    photoshop. HOw can I change these so I can see the images and they look like
    normal .jps to me instead of Firework .jpg. I tried to save them in Photoshop
    CS2 and then save them for the web and as a .jpg and that doesnt work. It only
    seems to let me save it in .gif only. Any suggestions.

    My BIGGEST PROBLEM:

    Do you happen to know or anyone out there as I AM DESPERATE if there is a way
    I can easily use PHP in Dreamweaver without having to rebuild the sites into
    htm or html?

    I looked up PHP and I am not familiar with it at all - why is it used vs. htm
    or html? Does anyone know?

    IF anyone has any recommendations I WOULD VERY MUCH appreciate it!

    THANK YOU,
    Ann

    Gibson070602 Guest

  2. Similar Questions and Discussions

    1. Dreamweaver PLEASE
      ok, I am sort of new to the design world. I have designed plenty of sites using dreamweaver an photoshop on my computer and uploading them to a...
    2. Dreamweaver/PHP
      Hi - I want to be able to do is produce a list which is defined by specific criteria. So, for example, I'd like a drop down box which contains...
    3. FW->Dreamweaver->web
      Did you remember to also upload the external JavaScript file (.js)? Win ------------ On Mon, 8 Sep 2003 17:34:40 +0000 (UTC), "sanvito"...
    4. Will a webpage designed in Dreamweaver 4 be compatible with Dreamweaver MX?
      Will a web page designed with Dreamweaver 4 and Fireworks 4 be compatible with the MX versions of Dreamwever and Fireworks? We have one PC with...
    5. Dreamweaver bug..
      Hey, I found a bug in dreamweaver mx. I'm not sure what it is, but whenever i use dw for over an hour, the characters i type in the code section...
  3. #2

    Default Re: PHP w/ Dreamweaver

    Yes, you can use php without contribute etc. , although if the original site
    was built with contribute it's going to be extremely tied into DW MX etc.
    I write using dreamweaver just to create the basic page and some php, then use
    "Zend Platform" (very good, written by the same people as php) to do the rest.
    Zend gives you good debugging, which is what is missing otherwise.
    normal html images are best as .gif for small ones, jpg maybe for larger, or
    you can use png. But jps is not a web format. Your "file associations" on your
    pc determine what application is connected to each extension - remove that and
    you don't need to edit images in fireworks, you can use anything.

    PHP is very different to html - have you used PHP before? It's for SERVER side
    control of variables etc. (e.g. $total = $price * qty)
    you then display the result within the html page using something like
    <p> Thanks for you order , the total is: <?php echo $total ?> </p>

    You can switch in and out of php within the html as much as you like.

    ChrisHe Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139