Dynamic website advice needed

Hi, I need a program that has an easy interface for a
non-programmer. The
client is a staffing agency and needs to update the available
jobs on a
daily basis. Right now they are using 8 year old software
called Web Data. I
would like the program to integrate with DW8 and be easy to
install.
Thanks, Ron

Ron wrote:
> Hi, I need a program that has an easy interface for a
non-programmer. The
> client is a staffing agency and needs to update the
available jobs on a
> daily basis. Right now they are using 8 year old
software called Web Data. I
> would like the program to integrate with DW8 and be easy
to install.
>
> Thanks, Ron
You would build a dynamic website with DW that gives your
client access
to a secure area where they can add jobs.
Do you know any serverside languages? If you do, DW can help
you out, if
not, then you either need to do some learning, or pay someone
else do
this one.
Dooza
Posting Guidelines
http://www.adobe.com/support/forums/guidelines.html
How To Ask Smart Questions
http://www.catb.org/esr/faqs/smart-questions.html

Similar Messages

  • Flash Website Advice Needed.

    Hi,
    Im going to give my own site a go in flash and was wondering if someone could give me a few pointers or direction as i have not used flash for a few years now.
    I want my site to work like this but obviously i wanna customize it to suite. http://www.glenbowden.com/
    Any pointers would be greatly appreciated.
    Thanks in advance
    Justin

    For each section, create an empty movieclip and add all the images to that movieclip dynamically (or you can do it all by hand on the stage).  Then as each image is added, a button is also added and assigned a value relative toi the x position of the image it is for.  When you click that button, it executes a function that gradually increments/decrements the x position of the movieclip until the movieclip has moved to the position where that image is in the intended display area.  You can use the actionscript Tween class instead of a gradual increment/decrement approach.

  • I need to know how I will create a dynamic website using php and mysql

    I need to know how will I create a dynamic website using php and mysql that people could have the abilities of registering in the website, and modify their profile where they can add their pictures and everything. apart from that, they should have the ability to search about other member. hope to here more from you.

    If you are a right-brained creative, and have no previous experience or propensity to be able to understand coding and database "stuff", and/or if your time can be better spent on other skills, I recommend you save your sanity and hire a developer... or at least the first time around. I have been attempting to grasp this for years... and have a library of marked up books to prove my efforts, all while trying to keep up with an ongoing client base that is always cramped. It's a wonder I still have my sanity... then again, I might not be the best person to determine that. Others might question it.
    That said, I still plan to master php... one of these days.

  • Help with building dynamic website using tutorial (was: I know this is a repost but I'm still stuck!)

    Perhaps this was missed by the group but here goes:
    I am slogging thru a dynamic PHP tutorial but  I cant continue without losing some understanding of the process due to ?
    I am trying to complete the following:
    Building your first dynamic website – Part 2: Developing the back end
    However,
    my Insert record form dialog (below) looks like this, and I need to change both 'title' and 'blog_entry' values (as shown above), but I cannot make that choice in my form.
    I am using DW CC with the Deprecated Server Behavior from DMX zone.
    I have made sure my results match the tutorial, but I cant get past the above inconsistency in functionality.
    Any help would be appreciated.
    Thanks folks!

    The Columns area indicates which form field is used to insert a value in each column. Although the post_id and updated columns are listed as getting no value, their values are generated automatically by the database.
    Check that the title and blog_entry columns are being assigned the correct values. If either is marked as getting no value, it means that you have spelled the names of the form fields differently from the column names. Correct this by selecting the column name in the Columns area and selecting the form field's name from the Value pop-up menu.
    Nancy O.

  • Dynamic Website

    Hi Guys,
    I have created my dynamic website and it works alright, but I need assistant with orginization of my files.
    I have putting together an on-line store for products such as jeans.  My SQL data based is designed as follow:   categories (denim, non denim) body ( boot cut, flare, skinny and etc), style ( style number, description and 4 photos for each style)  These photos are listed in PHP with a  specific number assigned to them like st001.jpg . In Dreamweaver I linked image folder to the area where the photos are to be repeated all the way down the page for each style
    I will have over 500 SKU ( style Number) each SKU will have 4 photos. How would I be able to organize all these photos in folders?
    I found the reapeating region easy andI am planning to use my data base and use the repeat region method to list all the style number.  Do I put 2000 puts in a Image folder, or do I create a main image folder and add sub-folder for each body such as skinny, boot cut, flare and etc.  I also need to fiter these styles based on wash, rise, body and etc. if that make sense.
    Please help me with the correct  and easy method to do this task.
    I also would like the shopper to be able to magnify on the photo.  I am using the "thickbox widget" for my gallery. Please tell me if this is the correct way or suggest if there is better method.
    Thank you so much and everyone have a happy holiday.

    bobbak2011 wrote:
    Well I need a specific look for my website for high end designer clothing. Most shopping bag software I came a cross were really basic.  If there are shopping bags that have good datbase features available i would like to link them in dreamweaver to my website.
    Of course, i would not put all the photos and for each style on one page.  They will be displayed in different pages with filtering capabilities built in to the each page.
    Look should be the least of the concerns.  Most pre-built apps can be skinned to match your site.
    I am attaching an image to this post to describe details below.  It is of a wireframe of your database structure (images are easier to talk with then text in many cases).
    As you describe it you have 4 tables right now and you are trying to organize images.  The 4 tables you describe having now are:
    Products - Contains product data, pricing, and subcategory information
    Categories - Denim, etc.
    Body - Boot cut, etc.
    Style - Style number, etc.
    In the diagram you will see text in 2 colors, red and blue.  The Blue text columns are your primary keys and the Red are where foreign keys should lie.  Because there are foreign keys the tables should be setup with the InnoDB engine as opposed to the default myisam.  The foreign keys create the proper dependancies to ensure the integrity of the data so that all fields entered in are valid (this will help a lot with updating down the road).
    Next, is your images.  The table 5 is a very basic depiction of what your images table should look like.  At the very least you need to know the path, alt_tag (in case image doesn't load and to make page valid), and a foreign key on the product_id column linking to your products table.  To make things easier on your script you should have all the images in one folder.  The database will do the heavy lifting to sort the pictures to the proper items.  And because you have multiple images for each product you have an "Order_By" column to that table as well to ensure that they are printed in the proper order.
    Lastly is the query.  Your query should have the LIMIT and utilize the "offset" to select the specific rows within that range.  More info on the offset can be found here ( http://dev.mysql.com/doc/refman/5.0/en/select.html ).  The page listing query will select the first image for each product and basic information.  Then run a loop to print X number of items to the screen.  Then for your product detail page gather all the data from the multiple tables and you should be good to go.
    That should get you started.  If you have any questions post back.

  • I cannot use a website I need to use, with Firefox 5.0. So, I need to uninstall and go back to 3.5 or 3.6. Please advise. Also, my control panel locks up since Windows Explorer has pbms. Which is why I am using Firefox instead. Thanks for any help!

    I cannot use a website I need to use, with Firefox 5.0. So, I need to uninstall and go back to 3.5 or 3.6. Please advise. Also, my control panel locks up since Windows Explorer has pbms. Which is why I am using Firefox instead. Thanks for any help!

    ''I figured it was going to be FAFSA causing your problem.''
    Install Portable Firefox 3.6.x to your hard drive for that one website. It won't affect your current Firefox installation at all. <br />
    http://portableapps.com/apps/internet/firefox_portable/localization#legacy36

  • Dynamic Action-help needed

    Hi ,
    My requirement is in dynamic Action I need to delimit all records in a Subtype of an Infotype and create New record for these records with BEGDA as ENDDA + 1 of the delimited records.
    Iam able to delimit all records in the Subtype but , Iam not able to create new records.
    My code for delimiting is as given below, in T588Z,
    9901 2 06 801 P P9901-SUBTY='2'
    9901 2 06 802 P PSYST-IOPER='MOD'
    9901 2 06 803 P P9901-STATS='X'
    9901 2 06 804 P P9901-PREAS='91'
    9901 2 06 805 F DELIMIT_DTE(ZHSRAS_T588Z_9901)
    9901 2 06 806 W P9901-ENDDA=RP50D-ZZDATE3
    9901 2 06 807 I MOD,9901,3
    9901 3 06 808 P SY-UCOMM='UPD'
    9901 3 06 809 F DELIMIT_DTE(ZHSRAS_T588Z_9901)
    9901 3 06 810 W P9901-ENDDA=RP50D-ZZDATE3
    The above code is working fine.
    My code for creating new record is as given below, even though the control is oing to the subroutine, INS statement is not working, and hence new record is not getting created.
    9901 3 06 811 P SY-UCOMM='UPD'
    9901 3 06 812 P PSAVE-ENDDA<>P9901-ENDDA
    9901 3 06 813 P P9901-STATS<>'X'
    9901 3 06 814 I INS,9901,3
    9901 3 06 815 F BEGIN_DATE(ZHSRAS_T588Z_9901)
    9901 3 06 816 W P9901-BEGDA=RP50D-ZZDATE3
    9901 3 06 817 W P9901-ENDDA='99991231'
    Kindly help me on this.
    Thanks in Advance

    hi,
    thankyou for all ur valuable replies.
    Time constraint for this custom infotype is 2.
    It is not allowing to create a new subtype record if 1 exists.
    Here scenerio is
    Each Subtype ,ie, Subtp 2 ad 3 has got 4 records each with distinct OBJPS field.
    when STATS field of subtype 2 is changed for any 1 record in Subtype 2, corresponding record in Subtype 3 should get delimited .
    And, rest of the records of Subtype 3 should get created again with new start date.
    The code I have written for this is ,
    9901     2          06     800           *BEG*****DEATH OF WIDOW*****************
    9901     2          06     801     P     P9901-SUBTY='2'
    9901     2          06     802     P     PSYST-IOPER='MOD'
    9901     2          06     803     P     P9901-STATS='X'
    9901     2          06     804     F     DELIMIT_DTE(ZHSRAS_T588Z_9901)
    9901     2          06     805     W     P9901-ENDDA=RP50D-ZZDATE3
    9901     2          06     806     *     ****PSAVE-ENDDA<>P9901-ENDDA
    9901     2          06     807     F     LOCK_REC3(ZHSRAS_T588Z_0015)
    9901     2          06     808     I     <b>MOD,9901,3,P9901-OBJPS,(P9901-BEGDA),(P9901-ENDDA)</b>
    9901     2          06     812     *     *BEGCREATE NEW REC FOR SURVIVING WIDOWS******
    9901     2          06     813     *     *
    9901     2          06     814     P     P9901-STATS<>'X'
    9901     2          06     815     F     BEGIN_DATE(ZHSRAS_T588Z_9901)
    9901     2          06     816     W     P9901-BEGDA=RP50D-ZZDATE3
    9901     2          06     817     W     P9901-ENDDA='99991231'
    9901     2          06     818     I     <b>COP,9901,3,P9901-OBJPS,(P9901-BEGDA),(P9901-ENDDA)</b>
    9901     2          06     819     *     *ENDCREATE NEW REC FOR SURVIVING WIDOWS*****
    9901     2          06     830     *     ***END*****DEATH OF WIDOW*****************
    Control is going to all routines, but
    MOD,9901,3,P9901-OBJPS,(P9901-BEGDA),(P9901-ENDDA)  and
    COP,9901,3,P9901-OBJPS,(P9901-BEGDA),(P9901-ENDDA) is not working.
    Message was edited by: Shahana Shahul
    Message was edited by: Shahana Shahul

  • How I detect in a dynamic website either PHP or CFM or JSP that cookies & javascript are enabled ?

    How I detect in a dynamic website either PHP or CFM or JSP that cookies & javascript are enabled ?

    You do that on the browser end using JavaScript. For cookies, simply establish session variables in PHP or whatever you use. if the browser refuses them, they wil lreturn a respective value in the referrers...
    Mylenium

  • Advice needed on buying iphone as gift

    I went to apple store, they do not want to sell iphone to me unless I sign AT&T 2 years plan. I thought AT&T has locked the phone and users must subscribe in order to use it. Why Apple store still not allow me to buy?
    Please advice, if I want to buy online iphone for my brother, do I or my brother have obligation to sign out AT&T plan?
    One more advice needed, I found the shipment takes weeks, do I have option to arrange for self-collection?
    My brother birthday is coming soon, I need above advice urgently.
    Thank you very much

    Tamara wrote:
    I'm guessing English is not your first language. It's possible that you misunderstood them. Apple Store employees won't refuse to sell you an iPhone and you don't have to sign up for service in the store.
    Well that's not entirely true.
    Apple Stores have been instructed not to sell you an iPhone if any of the following is true:
    • You state that you will not be signing up with AT&T.
    • You do not have an ID from a US state, also indicating you will not be activating with AT&T
    • You do not have a credit card
    For example, I've seen US Apple Store managers refuse to sell iPhones to European residents because of the AT&T lock-in.

  • Video intensive work on Mac Pro? Advice Needed

    Hi everyone,
    I've been originally saving up for a while now for an iMac 24" as it offers the best specification price wise. But now I leaning on the Mac Pro and therefore need some advice.
    I know that there are alot of posts on advice - need to buy mac etc. so therfore I would really appreciate if I am afforded some help.
    I am mostly going to do ALOT of video encoding (via handbrake) and I am looking for the best configuration available to achieve lowest waiting time.

    I think you should go back and look at the other threads with advice, your budget. There is "ideal" and "affordable."
    Will it pay for itself in 24 months so you can afford the next revision at that time?
    Start with an 8-Core 3GHz.
    Add a Port Multiplier controller and two drive cases, 5 drives each, nearly 400MB/sec RAID.
    Throw in 8GB RAM.
    Add in costs for software upgrades, two sets of backups, four internal 500GB drives.
    Seagate has 750GB, as does WD. Hitachi has their $450 1000GB monster.
    Give yourself time to build, test, and optimize your setup, and expect to change it over time as you learn more.
    Can't afford that? then trim the 8-core. But Apple has shown how efficient next generation applications already are for video when it comes to 3GHz 8-core Mac Pro.

  • Had to have a rebuild of my laptop....advice needed!

    Had to have a rebuild of my laptop....have now lost all my music from my itunes, but I can't transfer back on from my ipod. Also had to register my laptop (same) as another computers, so now no music showing as purchased, though I have. Also have hours of uploaded music from my own purchased, legitimate CDs, but won't transfer from ipod...it says it will erase. So very frustrated....thanks mr technician!    PLEASE  ....help, advice needed!

    I believe that if you do a clean reinstall from your HD's recovery sector (D) or Recovery disks, the hard drive sector C is wiped clean. Everything goes, apps, data, address books, music, pix, viruses
    Is that what you did?

  • I am using InDesign CS5. I have a body of text which is ranged left with tabbed indents. My client now wants the copy to be justifed, keeping the tabbed indents. Help and advice needed please!

    I am using InDesign CS5. I have a body of text which is ranged left with tabbed indents. My client now wants the copy to be justifed, keeping the tabbed indents. Help and advice needed please!

    Hi
    That screen grab helps a lot. There’s a much easier way of doing what you’re doing.
    Remove all your tabs and set the text in justified paragraphs.
    I’ve typed in dummy text in the example I made below, but after “19.1” put in a space and put your blinking cursor after the space and before the ’N’ of ‘Notices'.
    Then hold down the Command key and hit Backspace (on Mac at least - it’s the key between the Inverted commas/ apostrophe key and the return key).
    The text will jump into place the way you want it to.
    Hope that helps
    Paul
    PS You can set a tab, instead of using a space, in the description I gave above. So, after 19.1 or 19.2 or 19.185 etc etc insert a tab, then hit the Command Backspace after every paragraph number and they'll all line up exactly together. You'll find that editing text within the paragraphs
    after you've set it will be LOADS easier this way.
    You can put the tab anywhere you want it to be using 'Command-ShiftT' and putting a 'left align' tab just after the number. Just type the Command Backspace after the paragraph number and it'll work

  • HT1338 In order to some calculator functions on the "Bankrate" website I need to enable the Java Browser function.  I can I accomplished that task?

    In order to some calculator functions on the "Bankrate" website I need to enable the Java Browser function.  I can I accomplished that task?

    In recent versions of Lion, Java is automatically disabled (for security reasons) if it goes unused for a certain amount of time.  You can re-enable it in the General pane of the Java Preferences app, found in /Applications/Utilities.  (Check the box at the top of that pane.)  If trying to open Java Preferences results in a message asking if you want to install Java, you don't actually have Java yet.  Click the install button to install it.
    Note that having Java turned on in your web browser is dangerous, due to recent proliferation of malware that uses Java to install itself.

  • MOVED: Various advice needed to overclock cpu using my MSI k8n platinum sli

    This topic has been moved to Overclockers & Modding Corner.
    Various advice needed to overclock cpu using my MSI k8n platinum sli

    what HSF for cpu/ cooling for the case do you use? And also, where are the flashing lights?

  • Stuck in first dynamic website tutorial

    I am going through first dynamic website tutorial, I am having difficulties with: Create a MySQL connection.  I get an error message when I hit the test button, I get error 1045, access denied for user 'phptestuser@localhost' (using password: yes).  I have tried all the mentioned suggestions.  Any help would be appreciated.  My email is [email protected]

    Javascript errors can be a pain sometimes.
    These seem to occur quite frequently when applying behaviours but I can't remember the exact answer, maybe someone else will help out - it involves deleting a file in Dreamwear to try and clear the issue.
    I had the same problem a few months back and nothing seems to work then suddenly it just went away.
    You can try copying the code to a new Dreamweaver file and see if that has any effect OR try a clean file and rebuild. I found that for some reason when a file becomes corrupt no matter what you seem to do nothing works other than to start afresh.

Maybe you are looking for

  • Stop "Determining Audio Volume"

    iTunes 11.0.1.12 Windows 8, 64-bit I'm suffering from continual Determining Audio Volume. I figured if I left it running all night, Iit would complete. But it's only at 1,049 of 49,000+ files. At this rate, it would take months to complete! this is i

  • What are the control functions of Suitability and setup type key in work center?

    Hi all, Can any1 plz tell me what is suitability and setup type key in workcenter default values tab? what are the functions controlled by these keys?

  • Union Of reports using Combine Similar Request

    Hi, I have a requirements to perform a calculation that involves results from 4 different reports. I am using the Union Operation in Combine Similar request for analysis option and I built the table that pulls out values from 4 different reports. Now

  • Restrict copying of a PDF file

    Can I restrict copying of a PDF file?  Not the content, the entire file.  If not, is there an add on I can purchase?

  • Handling the flow AII-- XI-- Mainframe

    How can we handle a flow between AII and XI. can we use XI adapter or any other  for this. If so, What is the procedure  for using XI adapter .