Dreamweaver and PHP Help Needed!

If there is anyone out there who can help, I am working with
a back-end secured website that is in php and need to manipulate
and change pageson-the-fly. I'm not sure how to view and actually
see in Design View my PHP page, as I can best work in Design View.
Can anyone help out there?
The website I need help with is
http://www.businesscreditbuilder.com
Help needed as soon as possible...
Thank you...
If you want to help, I can compensate you for helping with an
immediate page..

Thank you for writing. I do need your help, and here's the
scenario. I work for a company that deals with business credit. In
the previous post at
http://www.businesscreditbuilder.com
there is a login. Once logged in, there is a home page for the
members. That first page I need to change as soon as possible for
over 40,000 members. All the members will see the same home page
inside the members area. You're welcome to login as "makaiman",
password is "1143mak" to see the first page that comes inside the
members area I need to change just a little. PHP is installed on a
remote server running on Windows. I need help or guidance on this
immediately but I have to sleep right now as it is 1130pm pacific
and need to have this done by sometime tomorrow morning. I
appreciate all of your help so very much... any advice would be so
much appreciated...
m

Similar Messages

  • How to create a dynamic newsflash using dreamweaver and PHP

    Hi there,
       I would like to create a dynamic newsflash using dreamweaver and PHP in that the newsflash will be pulling information from a MySQL database. The newsflash should also have a link to view more information about the piece of news a user wants to know more about. Which tools do I need to use in dreamweaver and how's the procedure to go about that. Any advice is highly appreciated. Thanx in advance!

    I think you´ll need at least a MySQL table with the following columns:
    - id (primary key, int, auto_increment etc)
    - news_headline (varchar)
    - news_teaser (text)
    - news_content (text)
    What I´d personally add are columns such as:
    - news_date (date or datetime)
    - news_external_link (varchar), if a "read more..." link is supposed to navigate to an external URL rather than displaying the contens of the "news_contents" column.
    Based on such a MySQL table it should be easy to use Dreamweavers standard Server Behaviors to create the usual datalist.php, insert.php, update.php and delete.php documents, and there are numerous tutorials out there which will teach you how to do that.
    Am I right when assuming that you´ll also need to know how to automatically pull, say, the 5 most recent news records from the database ?

  • Dreamweaver Connections Folder Help Needed

    I am working on Mac OS 10.4, Dreamweaver 8, PHP 4.1+ and
    MySQL. I can get my database connection to work if I have it
    directly in the PHP code but if I try to do it using the
    Dreamweaver interface - the connection doesn't work. My testing
    server and remote server all test ok on the connections. I believe
    the problem is where the Connections folder is located but it
    appears Dreamweaver only accepts it at the top level and the way my
    hosting company configures their domains, it doesn't see the
    connections folder and it doesn't work. I need to get it to work as
    I want to use the Dreamweaver interface. I've searched every help
    forum and tried many suggestions with no luck - anybody run into
    the same problem?
    Thanks!
    Jammin' Julie

    Thank you for writing. I do need your help, and here's the
    scenario. I work for a company that deals with business credit. In
    the previous post at
    http://www.businesscreditbuilder.com
    there is a login. Once logged in, there is a home page for the
    members. That first page I need to change as soon as possible for
    over 40,000 members. All the members will see the same home page
    inside the members area. You're welcome to login as "makaiman",
    password is "1143mak" to see the first page that comes inside the
    members area I need to change just a little. PHP is installed on a
    remote server running on Windows. I need help or guidance on this
    immediately but I have to sleep right now as it is 1130pm pacific
    and need to have this done by sometime tomorrow morning. I
    appreciate all of your help so very much... any advice would be so
    much appreciated...
    m

  • [Mostly Sorted] Extracting tags - regexp_substr and count help needed!

    My original query got sorted, but additional regexp_substr and count help is required further on down!
    Hi,
    I have a table on a 10.2.0.3 database which contains a clob field (sql_stmt), with contents that look something like:
    SELECT <COB_DATE>, col2, .... coln
    FROM   tab1, tab2, ...., tabn
    WHERE tab1.run_id = <RUNID>
    AND    tab2.other_col = '<OTHER TAG>'(That's a highly simplified sql_stmt example, of course - if they were all that small we'd not be needing a clob field!).
    I wanted to extract all the tags from the sql_stmt field for a given row, so I can get my (well not "mine" - I'd never have designed something like this, but hey, it works, sorta, and I'm improving it as and where I can!) pl/sql to replace the tags with the correct values. A tag is anything that's in triangular brackets (eg. <RUNID> from the above example)
    So, I did this:
    SELECT     SUBSTR (sql_stmt,
                       INSTR (sql_stmt, '<', 1, LEVEL),
                       INSTR (substr(sql_stmt, INSTR (sql_stmt, '<', 1, LEVEL)), '>', 1, 1)
                       ) tag
    FROM       export_jobs
    WHERE      exp_id =  p_exp_id
    CONNECT BY LEVEL <= (LENGTH (sql_stmt) - LENGTH (REPLACE (sql_stmt, '<')))Which I thought would be fine (having tested it on a text column). However, it runs very poorly against a clob column, for some reason (probably doesn't like the substr, instr, etc on the clob, at a guess) - the waits show "direct path read".
    When I cast the sql_stmt as a varchar2 like so:
    with my_tab as (select cast(substr(sql_stmt, instr(sql_stmt, '<', 1), instr(sql_stmt, '>', -1) - instr(sql_stmt, '<', 1) + 1) as varchar2(4000)) sql_stmt
                    from export_jobs
                    WHERE      exp_id = p_exp_id)
    SELECT     SUBSTR (sql_stmt,
                       INSTR (sql_stmt, '<', 1, LEVEL),
                       INSTR (substr(sql_stmt, INSTR (sql_stmt, '<', 1, LEVEL)), '>', 1, 1)
                       ) tag
    FROM       my_tab
    CONNECT BY LEVEL <= (LENGTH (sql_stmt) - LENGTH (REPLACE (sql_stmt, '<')))it runs blisteringly fast in comparison, except when the substr'd sql_stmt is over 4000 chars, of course! Using dbms_lob instr and substr etc doesn't help either.
    So, I thought maybe I could find an xml related method, and from this link:get xml node name in loop , I tried:
    select t.column_value.getrootelement() node
      from (select sql_stmt xml from export_jobs where exp_id = 28) xml,
    table (xmlsequence(xml.xml.extract('//*'))) tBut I get this error: ORA-22806: not an object or REF. (It might not be the way to go after all, as it's not proper xml, being as there are no corresponding close tags, but I was trying to think outside the box. I've not needed to use xml stuff before, so I'm a bit clueless about it, really!)
    I tried casting sql_stmt into an xmltype, but I got: ORA-22907: invalid CAST to a type that is not a nested table or VARRAY
    Is anyone able to suggest a better method of trying to extract my tags from the clob column, please?
    Message was edited by:
    Boneist

    I don't know if it may work for you, but I had a similar activity where I defined sql statements with bind variables (:var_name) and then I simply looked for witch variables to bind in that statement through this query.
    with x as (
         select ':var1
         /*a block comment
         :varname_dontcatch
         select hello, --line comment :var_no
              ''a string with double quote '''' and a :variable '',  --:variable
              :var3,
              :var2, '':var1'''':varno'',
         from dual'     as string
         from dual
    ), fil as (
         select string,
              regexp_replace(string,'(/\*[^*]*\*/)'||'|'||'(--.*)'||'|'||'(''([^'']|(''''))*'')',null) as res
         from x
    select string,res,
         regexp_substr(res,'\:[[:alpha:]]([[:alnum:]]|_)*',1,level)
    from fil
    connect by regexp_instr(res,'\:[[:alpha:]]([[:alnum:]]|_)*',1,level) > 0
    /Or through these procedures
         function get_binds(
              inp_string in varchar2
         ) return string_table
         deterministic
         is
              loc_str varchar2(32767);
              loc_idx number;
              out_tab string_table;
         begin
              --dbms_output.put_line('cond = '||inp_string);
              loc_str := regexp_replace(inp_string,'(/\*[^*]*\*/)'||'|'||'(--.*)'||'|'||'(''([^'']|(''''))*'')',null);
              loc_idx := 0;
              out_tab := string_table();
              --dbms_output.put_line('fcond ='||loc_str);
              loop
                   loc_idx := regexp_instr(loc_str,'\:[[:alpha:]]([[:alnum:]]|_)*',loc_idx+1);
                   exit when loc_idx = 0;
                   out_tab.extend;
                   out_tab(out_tab.last) := regexp_substr(loc_str,'[[:alpha:]]([[:alnum:]]|_)*',loc_idx+1);
              end loop;
              return out_tab;
         end;
         function divide_string (
              inp_string in varchar2
              --,inp_length in number
         --return string_table
         return dbms_sql.varchar2a
         is
              inp_length number := 256;
              loc_ind_1 pls_integer;
              loc_ind_2 pls_integer;
              loc_string_length pls_integer;
              loc_curr_string varchar2(32767);
              --out_tab string_table;
              out_tab dbms_sql.varchar2a;
         begin
              --out_tab := dbms_sql.varchar2a();
              loc_ind_1 := 1;
              loc_ind_2 := 1;
              loc_string_length := length(inp_string);
              while ( loc_ind_2 < loc_string_length ) loop
                   --out_tab.extend;
                   loc_curr_string := substr(inp_string,loc_ind_2,inp_length);
                   dbms_output.put(loc_curr_string);
                   out_tab(loc_ind_1) := loc_curr_string;
                   loc_ind_1 := loc_ind_1 + 1;
                   loc_ind_2 := loc_ind_2 + length(loc_curr_string);
              end loop;
              dbms_output.put_line('');
              return out_tab;
         end;
         function execute_statement(
              inp_statement in varchar2,
              inp_binds in string_table,
              inp_parameters in parametri
         return number
         is
              loc_stat dbms_sql.varchar2a;
              loc_dyn_cur number;
              out_rows number;
         begin
              loc_stat := divide_string(inp_statement);
              loc_dyn_cur := dbms_sql.open_cursor;
              dbms_sql.parse(c => loc_dyn_cur,
                   statement => loc_stat,
                   lb => loc_stat.first,
                   ub => loc_stat.last,
                   lfflg => false,
                   language_flag => dbms_sql.native
              for i in inp_binds.first .. inp_binds.last loop
                   DBMS_SQL.BIND_VARIABLE(loc_dyn_cur, inp_binds(i), inp_parameters(inp_binds(i)));
                   dbms_output.put_line(':'||inp_binds(i)||'='||inp_parameters(inp_binds(i)));
              end loop;
              dbms_output.put_line('');
              --out_rows := DBMS_SQL.EXECUTE(loc_dyn_cur);
              DBMS_SQL.CLOSE_CURSOR(loc_dyn_cur);
              return out_rows;
         end;Bye Alessandro
    Message was edited by:
    Alessandro Rossi
    There is something missing in the functions but if there is something that may interest you you can ask.

  • Various Direct Debit and Billing Help Needed

    FAILURE TO DELIVER BILL IN PAPER FORMAT: Firstly when I discovered that my account number was encrypted in the email and that I could not pay the bill online, without having the whole account number in full - I contacted BT who told me that they would post my bill and it would arrive in paper form.  A week later, no sign of it so phoned again and again I was told that another paper copy would be sent out - waited another week - still no sign! Got a reminder email that my bill had not been paid - doh! I knew that but I was trying to get that sorted out! So phoned again today and the guy in India or wherever the heck he is, told me that he would setup a profile on BT.com for me and this would allow me to pay online.
    TEMPORARY ACCESS TO BT.COM?: The email address which this member of staff had set up on BT.com for me was identical to my old btinternet.com account minus a number! The new email address with this new account is somewhat different and when I try to edit simple information on the profile page, it does not allow me to do so.  Can anyone explain why?
    UNABLE TO SET UP DIRECT DEBIT:  I log-in to My BT (whether it's temp. access or not) and then click on Bills and Payments but instead of more options I get a graphic which has got "Ugrade to an online account" on one side and "Help with Billing and Payments" on the other side.  When I click on "see all billing and payments help" nothing happens and in fact NONE of the links work.
    Would it be the better idea to re-register with BT.com and this time put the correct BT email address in, the one that i was given with this account - see if it works that way?
    PLEASE HELP!!!

    This is essentially a customer to customer help forum; I could make one or two suggestions which might explain things but would be equally likely to complicate the matter. It all looks a bit messy and you need to get BT's help in sorting it out. The moderators who oversee this forum are jolly good at that and you can contact them here: Contact BT Care Team.
    They are busy and may take a few days to respond but will contact you by email or phone, and will have access to your account in order to put things straight.
    [Edit: My daughter turned up in the middle of writing this and by the time I posted it KB had replied in similar vein.]
    You can click the white star next to this message if you think it was helpful.

  • Issue with dreamweaver and PHP on WordPress theme

    Hi all
    Im trying to create a WordPress theme for my blog, however I keep getting this issue (CS6) "Dynamically-related files cannot be discovered because a testing server is not defined"
    I have been through my preferences and set everything how I think it should be set..
    anyone have any ideas?

    To work with dynamic sites like WordPress, you need a local testing server.
    WAMP for Windows
    http://www.wampserver.com/en/
    XAMPP for Windows
    http://www.apachefriends.org/en/xampp-windows.html
    XAMPP for Mac
    http://www.apachefriends.org/en/xampp-macosx.html
    MAMP for Mac
    http://www.mamp.info/en/downloads/index.html
    Setting up a PHP environment in Dreamweaver
    http://www.adobe.com/devnet/dreamweaver/articles/setup_php.html
    Building your first dynamic website – Part 1: Setting up your site and database connection
    http://www.adobe.com/devnet/dreamweaver/articles/first_dynamic_site_pt1.html
    Nancy O.

  • CMS for Dreamweaver and PHP with MySQL

    Hello
    I am at a medium level with Dreamweaver MX and 8. I have
    created a dynamic website running PHP and MySQL. The site sells
    luxury yachts (resales). What I need is a simple, not too custom
    code heavy content management system to allow the client to update
    dynamic text areas and upload images via a web browser (IE7 PC).
    The site needs the ability to input new boats, and delete sold
    boats (flush out the database items).
    Has anyone got a recommendation for some CMS software,
    preferably Mac OSX PPC and running on a server under linux.
    I don't mind buying it, in fact rather do that than risk
    shareware going forward.

    I have the exact same need. Looks like nobody had any
    suggestions for the original poster. Perhaps someone can make a
    recommendation this time? I too am looking for a commercial
    product, rather than open-source.

  • Advanced dreamweaver and php question

    Hi I have a portal type of website for hairdressing and
    beauty industry.
    I am wanting to know if it is possible to have one register
    form so that the the user can use more than one area:
    Register for Directory/Classifieds - free registration and
    use except for banner advertising
    Register for Article Manager - free registratiion and use
    Register to Search CV's - free registration and paid service
    on a time limit
    Register to place Job Advert & Search CV's - free
    registration and paid service on a time limit
    Register to place CV online for employers to pay and search -
    free registration and use
    I am currently using radio buttons to have all listings
    inactive until approved by me to then change to active. Users on
    registration can list their CV, Job Ad and Article but won't be
    shown live until then. Job Ad, CV Search is a paid feature so I was
    thinking of having session variables assigned to them.
    I also have a radio button for the Job Ads and CV's that they
    can hide or show public so that it is only shown live when they
    need it to be.
    Lastly I was going to have a radio button for expired or
    notexpired so that when someone has registered and can still log in
    to the system if it is expired there will be a note saying to renew
    payment.
    I know this sounds a lot but I would love that there is one
    registration for customer convenience, one may want to place a
    listing, article and search for CV's.
    Lastly I am allowing the jobseekers to place their photo
    portfolio of their work e.g. hairdoo's, make-up etc.
    I want to allow all viewers to search and see these ( I will
    try to watermark them for copyright ), but when they click on the
    link they have restricted access to the CV until they pay.
    I hope somebody understands what I mean, I guess I need to
    restrict acces depending upon registration type and what would be
    available to them.
    Thanks for your time.

    jjjhbj111 wrote:
    > I understand the Restrict Access to Page behaviour but
    can someone have more
    > than one access level?
    Not with that server behavior. You would need to set access
    levels based
    on what a user is allowed to see. Level 1 for basic access,
    level 2 for
    a slightly higher level, and so on. If you want to have
    different codes
    for each type of access, you would then need to code all your
    conditional statements by hand.
    > I can't quite understand if they are already logged in
    and they go straight to
    > payments and return how the access level will change. Is
    it because I do a
    > mysql_insert_id()
    It depends how you get acknowledgment that they have paid.
    You already
    know the current access level and user id, so use the payment
    acknowledgment to trigger an update to the higher access
    level.
    David Powers, Adobe Community Expert
    Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • Dreamweaver Patch Download - Help Needed

    Greetings - I desperately need to download the Dreamweaver
    8.0.2 Updater to resolve the IE issues with active content,
    rollovers, etc but can't get the download to work. I have tried RUN
    as well as SAVE and get either get a message saying something is
    wrong with the file and I need to try again OR I get problems with
    no signatures on the download.
    http://www.adobe.com/support/dreamweaver/downloads_updaters.html?pss=dw_8.0_win_en_full__D W_20040226#dw8
    I'm on XP with MSIE 7.0 (Friendly tip--if you didn't download
    7.0 yet DON'T DO IT!) if that's relevant.
    Any help would be greatly appreciated!
    Thanks!
    Scott

    Some people use a special application to manage their
    downloads and some
    times it is these that can cause an issue downloading from
    certain servers.
    Some examples of these manager would be like Download Studio,
    Internet
    Download Manager, or even AmazingDownload. If you are not
    using something
    like this then never mind.
    Have you cleared your browser's history and cache? I remember
    reading on
    these forums (think it may have been Murray) to try that and
    it did work for
    some. I may also be out of it right now and don't know what I
    am talking
    about. Recovering from some Diabetic related health issues.
    "OhioScott" <[email protected]> wrote in
    message
    news:eqlp9i$13j$[email protected]..
    > Baxter, Rob, thanks for the ideas. I had tried the
    download several
    > different
    > times and even turned off the virus protection, etc,
    during to see if that
    > helped. Each time, delete the download, try again. Tried
    both the 8.01 and
    > 8.02
    > with no better luck either time.
    >
    > Rob, I'm not sure I follow on not using a download
    manager... I think I
    > know
    > what you mean, but how would you get the download?
    >
    > I put a message in with support since I just bought the
    program but I'm
    > pretty
    > sure someone here will know the answer before support
    gets back to me.
    >
    > Thanks again!
    >
    > Scott
    >

  • Webform and Redirect Help Needed

    I have a site in development with 25 pages, of those 5 are only accessible if you fill in a form and each form will be slightly different on each of the 5 pages. I have no issues with setting up the forms. My issue is this. If I fill in any one form on any of the 5 pages it needs to remove the form(s) from the other 4 pages. So essential unlock the content that is being protected by the form(s). Any insight would be appreciated.

    Thank you for writing. I do need your help, and here's the
    scenario. I work for a company that deals with business credit. In
    the previous post at
    http://www.businesscreditbuilder.com
    there is a login. Once logged in, there is a home page for the
    members. That first page I need to change as soon as possible for
    over 40,000 members. All the members will see the same home page
    inside the members area. You're welcome to login as "makaiman",
    password is "1143mak" to see the first page that comes inside the
    members area I need to change just a little. PHP is installed on a
    remote server running on Windows. I need help or guidance on this
    immediately but I have to sleep right now as it is 1130pm pacific
    and need to have this done by sometime tomorrow morning. I
    appreciate all of your help so very much... any advice would be so
    much appreciated...
    m

  • Flash fading movies and sound-HELP NEEDED

    hey guys i need some help
    firstly if u want to help me could u please visit this site
    http://www.thetimemovie.com/
    this site is what i want to do
    notice the fading pictures that can be controlled and the
    sound bar at the bottom on the left
    Any help would b aprreciated GREATLY
    thanks in advance
    BUTCH101
    PS: email [email protected] if u have any info
    thanks

    What I see in the sample site is that the "sound bars" aren't
    sync'd at all. They are just a looping clip that stops in diagonal
    shape when clicked. And, the sound is not actually being stopped
    when you click the bars. Rather, the actionscript is actually
    turning the volume down, gradually. The sound is still continually
    playing, you just can't hear it. This is evident in the fact that
    when you restart the sound, it picks up not where you left off, but
    at the point where it would have been anyway, had you not clicked
    the button.
    I believe that the sound is set to streaming and as such can
    be dealt with frame by frame. So, your real quest is to have
    someone (more knowledgable than me) provide sample code that would
    begin reducing the volume of the sound object in increments as the
    movie moves through frames. Something like:
    onFrame (95){
    mySound.setVolume(80);
    onFrame (110){
    mySound.setVolume(60);
    onFrame (120){
    mySound.setVolume(40);
    onFrame (130){
    mySound.setVolume(20);
    onFrame (140){
    mySound.setVolume(10);
    onFrame (150){
    mySound.setVolume(0);
    Obviously, you wouldn't use frame numbers, but a variable
    representing the current frame relative to the frame the movie was
    in when you clicked the button.

  • OS X Yosemite and CS6 help needed.

    Hello,
    I have a MacBook Pro (2013) which I want to update to OS X Yosemite but I have one question about CS6.
    When I update my Mac system to OS X Yosemite do I have to remove and reinstall CS6? Or can I leave the program on my Mac and update it when OS X Yosemite is ready?
    I'm quite worried about this because I'm a student who needs CS6 every day to make my homework. Any help would really be appricated!

    @runtimer
    @JasonBrimer
    Thank you for your reply both. I will wait for a weeks before I update to Yosemite.
    This has helped me a lot and ease my worries.
    @runtimer
    @Rockwellsulcata
    @gener7  
    @Nancy O.  
    I would appicate if you guys would take the other question to another discussion, because I keep getting alerts on my phone which is really annoying. My answer got answered so there is no reason to keep continue this,

  • PHP Help needed

    Hi there,
    DW 8.0.2, php and mySQL
    How does the coding look in php when I want to say:
    1. "Show when session is empty"
    2. "Show when session is NOT empty"
    I know how to do in ASP but not PHP. I want the login part of
    a page to
    show when the session is empty (user did not log in) and the
    LOGOUT part
    to show when the user is logged in.
    Thanx in advance.
    Deon

    Thank you so much.
    I will try your code and let you know. This is what I have in
    ASP and
    need in PHP:
    <td colspan="2" align="center"> Welcome
    <% if Session("MM_Username") = "" then %>
    Visitor!
    <%End If %>
    <% if Session("MM_Username") <> "" then %>
    <!--#include file="../includes/incl_logout.asp" -->
    <%End If%>
    Will the code as per you suggestion do this? (Sorry for the
    question but
    I am VERY new to PHP.)
    Regards,
    Deon
    ctwebmast wrote:
    > Hey deonAt... I directly sent code with typo... here is
    what I meant to send.
    > Assuming login variable is a SESSION variable.
    >
    > <?php
    > $tempVar = $_SESSION['YourSessionVariable'];
    > if ($tempVar == "")
    > {
    > echo "session is empty";
    > }
    > elseif ($tempVar > "")
    > {
    > echo "session is NOT empty";
    > }
    > ?>
    >

  • Dreamweaver Template/Styles help needed

    Go SBI!!! My first site is ranked #9 on google and #14 on
    Yahoo!!!
    Okay, hello everyone, I could use some help. I'm stuck after
    lots of attempts. I am working on a new website using Dreamweaver.
    I have read most of 1,100-page DW Bible, but reading and
    implementing properly are two different things.
    I have 90% of my template file done. It has a header and
    footer and inbetween the content will site between two side colums
    (the left side will contain the nav bar and the right sidde misc
    info). My issue is in getting the three sections (left-column,
    center content, right-column) to have the same height so the
    bottoms line up.
    The issue is that each page varies in length based on the
    amount of content. Absolute seems to work, but I must be able to
    edit it from within each page individually. Here is the difficulty
    I'm having.
    I'm trying to setup my main page as a template so changes to
    items like the navbar get updated automatically throughout the
    webpages. Since the navbar sits within the left column (which
    contains CSS style codes such as border width, float, etc.) and
    I've gone in and chosen an editable area within that column, it
    makes everything else uneditable (like you'd want for a template
    page).
    But it also makes it impossible to edit that one height
    property. My main goal is to have the left center and right areas
    all lined up at the bottom and to be able to make changes to the
    master navbar and have it change all pages.
    Should I be looking to accomplish this another way?

    > My issue is in getting the three
    > sections (left-column, center content, right-column) to
    have the same
    > height so
    > the bottoms line up.
    There is no non-javascript way to do this. Google "faux
    columns" for a nice
    workaround.
    > like you'd want for a template page
    I'm worried that you don't quite understand how templates
    work when you say
    this. It's on the child pages where you want the navigation
    to be
    uneditable.
    > Should I be looking to accomplish this another way?
    Yes. Try the Google search.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "svteclipse" <[email protected]> wrote in
    message
    news:[email protected]...
    > Go SBI!!! My first site is ranked #9 on google and #14
    on Yahoo!!!
    >
    > Okay, hello everyone, I could use some help. I'm stuck
    after lots of
    > attempts.
    > I am working on a new website using Dreamweaver. I have
    read most of
    > 1,100-page
    > DW Bible, but reading and implementing properly are two
    different things.
    >
    > I have 90% of my template file done. It has a header and
    footer and
    > inbetween
    > the content will site between two side colums (the left
    side will contain
    > the
    > nav bar and the right sidde misc info). My issue is in
    getting the three
    > sections (left-column, center content, right-column) to
    have the same
    > height so
    > the bottoms line up.
    >
    > The issue is that each page varies in length based on
    the amount of
    > content.
    > Absolute seems to work, but I must be able to edit it
    from within each
    > page
    > individually. Here is the difficulty I'm having.
    >
    > I'm trying to setup my main page as a template so
    changes to items like
    > the
    > navbar get updated automatically throughout the
    webpages. Since the navbar
    > sits
    > within the left column (which contains CSS style codes
    such as border
    > width,
    > float, etc.) and I've gone in and chosen an editable
    area within that
    > column,
    > it makes everything else uneditable (like you'd want for
    a template page).
    >
    > But it also makes it impossible to edit that one height
    property. My main
    > goal
    > is to have the left center and right areas all lined up
    at the bottom and
    > to be
    > able to make changes to the master navbar and have it
    change all pages.
    >
    > Should I be looking to accomplish this another way?
    >
    >

  • IPhone 5s and iTunes Help Needed - NEW PC

    Hi, I got the iPhone 5s back in October (1st ever Apple product) and transfered my music and photos onto it via iTunes.
    What I need help with is as my laptop is in for repair (complete system restore) can I download  iTunes on mums laptop and put a few songs and pics on my iPhone WITHOUT clearing the  curent files and leaving me without nothing on it.
    Thanks
    James

    Use these instructions to open the library from its location on the external hard drive...
    How to open an alternate iTunes Library file or create a new one
    http://docs.info.apple.com/article.html?artnum=304447
    This assumes that everything needed for an iTunes library is on the external hard drive which includes the data base files that contain the info you are concerned about (playlists, counts, ratings, etc.).
    Patrick

Maybe you are looking for

  • Receiver shows in Cc only when using SO_NEW_DOCUMENT_SEND_API1

    I'm using FM SO_NEW_DOCUMENT_SEND_API1 to send external emails from SAP.  I have everything working quite well except... The receivers e-mail address only appears in the "Cc" field in the e-mail's header.  I cannot get it to show in the "To" field.

  • No internet but wifi is connected

    My ipod touch (2nd gen) is connected to my wifi but then says no internet connection is available.  It works fine at other places, just not at my house.  My daughters ipod touch (3rd gen) connects fine at my house and works perfectly!  Any ideas why

  • Can't find ME API for working with files.

    Hello I creating something like simple paint for my mobile phone, but I don't know how to read list of existing on my phone files. Thanks for any help, Andry.

  • Full screen with dual monitors

    I have two monitors hooked up to my Mac mini.  Both displays are working in non-mirroring.  I want to be able to put something in "full screen" on one monitor but I still want to be able to do something via the other monitor.  Currently if I set a mo

  • I hate IPhoto 6, is Aperture a choice?

    I don't really need a professional program but I hate Iphoto and I need something to organize and edit my photos! I want to eliminate Iphoto all together! It's so slow, I've rebuilt my library and it's driving me crazy! Any suggestions?