Developing dynamic website

I am working on building a website with full applications for
people to network online.
I want the site to take the format of www.hi5.com or
www.myspace.com.
Can you please help me to know how best to go about buiding
this using dreamweaver and interact extension.
Thanks

On Tue, 16 Jan 2007 10:00:16 +0000 (UTC), "urmy"
<[email protected]> wrote:
>I am working on building a website with full applications
for people to network
>online.
>
> I want the site to take the format of www.hi5.com or
www.myspace.com.
>
> Can you please help me to know how best to go about
buiding this using
>dreamweaver and interact extension.
What server-side scripting langauage do you work with?
Whichever it is
you need to be quite proficient in it (as well as html, css
and
javascript) before attempting something like those sites.
Extensions should aid development not subsitute for lack of
knowledge.
Steve
steve at flyingtigerwebdesign dot com

Similar Messages

  • 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.

  • 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.

  • Is java servlet a good way for developing a website

    Hi,
    i am developing a website that has to download huge data and upload huge data .also money transactions through credit cards need to be involved.is java servlet a good way to do this or should i use an ejb or any other technology.
    Any help is appreciated.

    Thanks for the reply.But di i need to use threading of some sort or can i directly write private methods to fulfill the purpose.Also is there any way my servlet can recognise when a device is connected to a usb port of local machine
    any help is appreciated

  • When in mode dev to develop my website, I can't open buttons and PDF files to check my changes or somebody else's changes. What is wrong ? (I updated  Adobe Reader)

    when in mode dev to develop my website, I can't open buttons and PDF files to check my changes or somebody else's changes. What is wrong ? (I already updated  Adobe Reader)

    Oh no... NOT THE 99-PAGER!!! Anything but THAT!!!

  • 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.

  • 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

  • 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

  • I used firefox 3.6.14 on windows 7 x64 (firxfox x32). I found a problem when I develop my website and alert data or value via javascript , firefox hang (not response) every time. What's happend? How to solve is problem?

    I used firefox 3.6.14 on windows 7 x64 (firxfox x32). I found a problem when I develop my website and alert data or value via javascript , firefox hang (not response) every time. What's happend? How to solve is problem?
    Thank you for help
    Lohkaeo

    Oops - for some reason, this problem now seems to have gone away. May have had something to do with Flash. I'll keep my fingers crossed.

  • Sql Developer Exchange - Website Unavailable

    I've just tried to access SQL Developer Exchange website and the message i get is
    The website you are trying to access is currently unavailable
    Can somebody look at this issue?
    I have also noticed low activity on this forum over the last few weeks which is a bit "strange". Is this due to a new version release? :D
    Cheers,
    Dani

    FYI - this should be redirecting to http://htmldb.oracle.com/pls/otn/f?p=42626:16:751995922354625::NO:::
    Have fun,
    K.

  • I develop a website using Adobe Dreamweaver CS6

    I develop a website using Adobe Dreamweaver CS6 . Problem is that in my website satmatha.com has some grid where i can not increse its size.

    Could you please explain in a little more detail what is wrong and what you would like to have happen instead?

  • I have developed one website and provied print fuctionality to print entire web from , but it is not printing the web page correctly, even in print preview it is showing wrong out put

    i have developed one website and provied print fuctionality to print entire web from , but it is not printing the web page correctly, even in print preview it is showing wrong out put...

    Try posting at the Web Development / Standards Evangelism forum at MozillaZine. The helpers over there are more knowledgeable about web page development issues with Firefox. <br />
    http://forums.mozillazine.org/viewforum.php?f=25 <br />
    You'll need to register and login to be able to post in that forum.
    Make sure you provide the URL for the problematic page, so they can see the problem for themselves.

  • 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.

  • Developing dynamic WebServices,,

    Hi,
    There is a webservices which I can used across my application in morethan one place .The webservices will expect 5 input and give 3 output.When I call the webservices I some times I will give 3 input and some times I will give 4 inputs.
    So is there a possibility where I can develope dynamic webservices.Which will expect different number of inputs and process??
    Thanks,
    Renga.S.

    Hi,
    I found the solution for developing dynamic webservices.If the webservices has five input but when we consume it ,we might not give exact five input ,in this case you can make the fields as optional in XSD and Inside the webservices you can have a check like if the fields is not null then implement the logic..
    Thanks,
    Renga.S.

  • Dynamic website with Flash?

    I'm using Dreamweaver 8 building a coldfusion website. The
    content for
    the webpages are pulled from an MS Access database. I'm
    trying to add
    in a flash photo gallery to a few of the pages. If I put the
    flash
    code directly on the webpage it will dispaly the flash photo
    gallery.
    However, if I put that same code into the database and
    display it
    dynamically it will not display the flash photo gallery. I
    have
    checked the source code of the dynamic page after it has
    loaded and
    the code is there.
    I'm sure the problem has something to do with the slight
    delay it
    takes for the code to be pulled from the database. Does
    anyone know of
    a fix for this?
    The html for both the static and dynamic page look exactly
    the same if
    you view the source code after the page has loaded. any help
    is
    GREATLY appreciated, thanks!
    here is a chunk of the flash code that is being inserted:
    <td width="492">
    <script type="text/javascript">
    AC_FL_RunContent( 'codebase','
    http://fpdownload.macromedia.com/pub/
    shockwave/cabs/flash/
    swflash.cab#version=8,0,0,0','width','474','height','454','id','CoffeeCup','align','right' ,'src','finaltemplateCoffee','quality','high','bgcolor','#ffffff','name','CoffeeCup','scal e','noscale','salign','lt','pluginspage','
    http://
    www.macromedia.com/go/getflashplayer','movie','finaltemplateCoffee'
    ); //end AC code
    </script><noscript><object
    classid="clsid:d27cdb6e-
    ae6d-11cf-96b8-444553540000"
    codebase="
    http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/
    swflash.cab#version=8,0,0,0"
    width="474" height="454" id="CoffeeCup" align="right">
    <param name="movie" value="finaltemplateCoffee.swf"/>
    <param name="quality" value="high" />
    <param name="scale" value="noscale" />
    <param name="salign" value="lt" />
    <param name="bgcolor" value="#ffffff" />
    <embed src="finaltemplateCoffee.swf" quality="high"
    bgcolor="#ffffff"
    width="474" height="454"
    name="CoffeeCup" scale="noscale" salign="lt" align="right"
    type="application/x-shockwave-flash"
    pluginspage="
    http://www.macromedia.com/go/getflashplayer"
    /></
    object></noscript>
    </td></tr>

    Usually the best source of information on working with a
    template is from the site where you purchased the template. There
    may be supplimental information packaged with the downloaded files,
    or there may be comments written directly into the files
    themselves.
    Exactly how you modify the file will depend on how it was
    designed, what version of Actionscript was used, whether it uses a
    component, or an swc file, and how well it was created.

Maybe you are looking for

  • Problem with running bitmap report in Oracle 6i

    Hello, I am running a report from a form using run_product in client/server enviroment. And I use the same code in all forms that run reports. In test enviroment, everything works normally. But in customer enviroment there is weird behaviour. Some re

  • Inconsistent Dep req in MRP run

    Let me explain the scenario with an example: B is child part of A. When we ran MPS, A's planned order has generated dep req on B. Subsequently A's Requirement and Planned order were deleted . But in the subsequent MPS run it is not deleting Child par

  • Java program

    Hi, i have a problem with a file:ExampleTag.java package coreservlets.tags; import javax.servlet.jsp.*; import javax.servlet.jsp.tagext.*; import java.io.*; public class ExampleTag extends TagSupport { public int doStartTag() { try { JspWriter out =

  • Mac Book Pro rebooting repeatedly...

    A Mac Book Pro used by a professor in our building has been rebooting spontaneously. Can't observe a pattern...not during a certain program, etc. Observed it once in between installations, user said it's happened frequently since then, even when comp

  • Discrepancy between the confirmation & deletion of qRFC - LUWs

    Hi Guys, when I load master data  load in delta, the load gets terminated & its throughing Application log, where I can see this error message: When the datawas confirmed & deleted in the qRFC queue, the system found the discrepancy between the numbe