Single account Dreamweaver, linked to the database.

Hi guys,.

I'm very new to dreamweaver, this new maybe that this issue is too complex for a person like me to ask. But okay, I'll give it a shot!

I currently have an empty HTML page than dreamweaver. Absolutely nothing about this, have not yet touched (so I can not he mess up)

I have a database (Microsoft access), also with nothing on it.

My goal is to create a page that will record a person with username: has and password: a (some examples) and then add them to the database [ID 1] under two columns 'Username' and 'Password '.

I would do exactly the same thing but for a person with username: B B password and these should be saved for [ID [2]

Maybe not too difficult, so far, but it's where I have not seen anything be it online when it comes to tutorials (or at least easier for me to follow same noticed they have on everything).

I want when they sign in, then go to a page that will say ' Welcome Back + their "Username"

Or on the database it be a third column with a number; for example (user A has a number 98 and user B has a number 99), for this number to be displayed somewhere on the page when they connect.


It is essential that it works when two users are connected at the same time.


Thanks for any help. Bare in mind, I'm a noob, although any explanation or advice would be welcome, it is not a value assuming I know something that may be obvious to you guys!


I have Dream Weaver CS6.

Thank you very much

What experience of programming server-side do you have?

If the answer is little or none, I think you should stick to the wide and advanced projects, until you get more coding experience.  But to answer your question, please see the following article:

How to create a Script of connection secured in PHP and MySQL - wikiHow

Nancy O.

Tags: Dreamweaver

Similar Questions

  • Link to the database of Oracle 11 g 11.2.0.3.0 to SQLServer 2012 - 11.0.5058.0 (X 64)

    Hello.

    I read a lot of discussion and documentation on this subject, but the things I'm trying to work.

    I want to connect from Oracle to SQL Server. I did the following steps:

    (Taking into account, that I want to connect to a database SQL SERVER called GS2PIASQL03\INSTANCE3)

    Create the odbc connection in the oracle called running GS2PIASQL03 Server

    Name: GS2PIASQL03

    Description: GS2PIASQL03

    Server: GS2PIASQL03\INSTANCE3

    With authentication sql server using a login ID and passwotrd entered by the user

    Connect to sql server to obtain default settings for the configuration option extra

    User: rema_read

    Password: xxxxxxx

    Master default database

    Use ANSI quoted identifiers

    Use nulls, padding and ANSI warnings

    Perform the conversion of character data

    Finishing and test the source data before TESTS COMPLETED successfully.

    Content of LISTENER.ora

    listener.ora # Network Configuration file: S:\app\oracle\product\11.2.0\dbhome_1\network\admin\listener.ora
    # Generated by Oracle configuration tools.

    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = CLRExtProc)
    (ORACLE_HOME = S:\app\oracle\product\11.2.0\dbhome_1)
    (= Extproc PROGRAM)
    (ENVS = "EXTPROC_DLLS=ONLY:S:\app\oracle\product\11.2.0\dbhome_1\bin\oraclr11.dll")
    )
    (SID_DESC =
    (SID_NAME = CRM)
    (ORACLE_HOME = S:\app\oracle\product\11.2.0\tg_1)
    (PROGRAM = S:\app\oracle\product\11.2.0\tg_1\bin\dg4odbc.exe)
    )
    (SID_DESC =
    (SID_NAME = CRMSVC)
    (ORACLE_HOME = S:\app\oracle\product\11.2.0\tg_1)
    (PROGRAM = dg4odbc)
    )
    (SID_DESC =
    (GLOBAL_DBNAME = REMA)
    (ORACLE_HOME=S:\app\oracle\product\11.2.0\dbhome_1)
    (SID_NAME = REMA)
    )

    )

    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP) (HOST = SLPIAM29)(PORT = 1521))
    (ADDRESS = (PROTOCOL = CIP)(KEY = EXTPROC1521))
    )
    )

    ADR_BASE_LISTENER = S:\app\oracle

    Content of the TNSNAMES file. ORA

    tnsnames.ora # Network Configuration file: s:\app\oracle\product\11.2.0\dbhome_1\network\admin\tnsnames.ora
    # Generated by Oracle configuration tools.


    GS2PIASQL03 =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = tcp)
    (HOST = 172.16.61.18)
    (PORT = 1521)
    )
    (CONNECT_DATA = (SID = GS2PIASQL03))
    (HS = OK)
    )

    Content of initGS2PIASQL03.ora

    HS_FDS_CONNECT_INFO = GS2PIASQL03

    #HS_FDS_SHAREABLE_NAME = C:\Windows\System32\odbc32.dll

    HS_FDS_TRACE_LEVEL = Debug

    Stop and start receiving and then create a database link running the following command in Toad:

    CREATE THE DATABASE LINK TEST_SQLS PUBLIC

    To CONNECT to "read_rema".

    IDENTIFIED BY 'password '.

    WITH THE HELP OF 'GS2PIASQL03 '.

    /

    When I test the link of database (with the option of Toad) or run a query such as:

    Select * of sys.sysobjects@TEST_SQLS;


    I get the same error

    *********************************************************************

    Link: "TEST_SQLS".

    Error: ORA-28545: error diagnosed by Net8 when connecting to an agent

    Cannot retrieve the text of the message NETWORK/NCR 65535

    ORA-02063: preceding 2 lines of TEST_SQLS

    *********************************************************************

    Please I really need your help I really really need this to work and I'm completely lost know.

    I look forward to hearing from you soon.

    Vinny.

    Hey Vinny,

    No, the host tnsnames.ora must not refer to the place where the SQL * Server database is active.  The tnsnames.ora entries is intended to guide the user who calls the database link by using this entry to a listener running on the computer and the port in the entry. The listener then directs the user to everything that is referenced by the SID in the listener. If it is an Oracle database, then you are linked to the database. If this is an entry of gateway referenced by having the (HS = OK) then you are linked to the gateway which then liaises with what non-Oracle database is accessible through the gateway of the option.  You cannot directly connect to the non-Oracle database by using the IP address of machine non-Oracle in tnsnames.ora. You need to go through the door entry referenced by the listener to establish the connection.

    For the listener, you can set the path to the ORACLE_HOME of the gateway or RDBMS. However, the best option is to give the listener a different name from the default, so for the gateway, you might have-

    SID_LIST_LISTENER_GTW =

    (SID_LIST =

    (SID_DESC =

    (SID_NAME = GS2PIASQL03)

    (ORACLE_HOME=S:\app\oracle\product\11.2.0\tg_1)

    (PROGRAM = dg4odbc)

    )

    )

    LISTENER_GTW =

    (DESCRIPTION_LIST =

    (DESCRIPTION =

    (ADDRESS = (PROTOCOL = TCP) (HOST = SLPIAM29)(PORT = 1525))

    (ADDRESS = (PROTOCOL = CIP)(KEY = EXTPROC1525))

    )

    )

    You can then use-

    stop LISTENER_GTW

    Start LISTENER_GTW

    Kind regards

    Mike

  • Deletion of a link when the database field is empty?

    Using ASP and Access - I make a list of organizations using repeated regions. Some require a link to their Web site, others do not. The code I use is fine when an organization has a web address. However, those who still do not receive the "Web Site" linked text, but lacks a URL in the (orgWebsite) relevant data field is empty. I need to remove the linked Word and the void < a > HTTP: / / < /a > that is rendered when a field is empty.
    Ideally, I want that he continues to behave as it does when a URL is present on the database, but leave no case of absence code. I'm pretty sure this means him < A HREF = and the "Web Site" text must be contained in the ASP code, but none of my attempts worked. Appreciate any assistance on this...
    Thank you

    Assuming that your URL is stored in a field called URLLink then the code
    looks like this

    < %="">< br="">ThisLink = recordset.fields.item("URLLink").value < br=""> ThisLink if <> "" then< br="" >="" %="">
    Website: http:// <%=ThisLink%> ' > <%=ThisLink%>
    <%End if%>

    --
    Paul Whitham
    Certified Professional Dreamweaver MX2004
    Adobe Community Expert - Dreamweaver

    Valleybiz Web design
    www.valleybiz.NET

    "Lancs" wrote in message
    News:e6qddr$f9v$1@forums. Macromedia.com...
    > Using ASP and Access - I make a list of organizations using
    > repeated
    > regions. Some require a link to their Web site, others do not. The code I am
    > help
    > right when an organization has a web address. However, those who don't
    > still
    > get the linked 'Site Web' text, but it lacks a URL as the relevant data
    > field
    > (orgWebsite) is empty. I need to delete the linked Word and the void
    > HTTP: / / returned when a field is empty.
    > Ideally, I want to keep it to behave as it does when a URL is present on
    > the
    > database but leave no case of absence code. I'm pretty sure that this happening by the
    ><>
    > HREF = and the "Web Site" text must be contained in the ASP code but
    > no
    > my attempts worked. Appreciate any assistance on this...
    > Thank you
    >
    ("> http://<%=rsOrgs.Fields.Item("orgWebsite "). Value% > "> Web site
    >
    >

    < / [email protected] > "

  • Where the CRM Customer-user account is stored in the database.

    Hello

    When you create and approving a CRM user using CRM HTML admin responsibility, assign us the customer accounts for which the user is created.
    For example, when you create a user for A client saw 5 accounts, I can assign account # 1,2 and 3 to the user.

    Does anyone know where this mapping is stored in the database?

    Kind regards
    Mohammed

    SELECT hca.account_number
    OF hz_cust_accounts AOB.
    fnd_user fu,
    hcar hz_cust_account_roles
    WHERE hca.party_id = fu.customer_id
    AND hcar.cust_account_id = hca.cust_account_id
    AND fu.user_id =

    Please let me know if this sql works. If not, I have to go through the flow and find the place where actually stores.

    Thank you
    RK
    925-998-1494
    Independent consultant

  • Link to the database part?

    Hello

    I recently tried to replace a screen cracked on a laptop (15-j170us) and doing so damaged a PIN in the connector ZIF display. I'm trying to find the part number of the Board of Directors system for my exact model and lists 5 possible parts repair. Is there a database of parts of HP link that will allow me to enter my information products and get the exact part number and the cost of a replacement system board?

    Thank you

    Matt

    I am an employee of HP.

    Here is the Service Manual:

    Manual

    It is the motherboard that is based on the specifications of your laptop. You have an AMD A10 processor and graphics card G 8650 which is part of the processor is the UMA graphics card:

    720577 501

    Here is the HP part (ouch):

    https://h20141.www2.HP.com/hpparts/Search_Results.aspx?mscssid=6FCD9F061F21495E8EE71180E6FE3302&SearchIn=PartNumber&SearchPN=720577-501

    part on eBay:

    http://www.eBay.com/ITM/genuine-HP-envy-TouchSmart-15-j009wm-AMD-motherboard-SystemBoard-720577-501-/111462165842?PT=motherboards&hash=item19f3a9ad52

    If it's 'the Answer' please click on 'Accept as Solution' to help others find it.

  • Impossible to verify the account him link in the email is going nowhere.

    Separated from this thread.

    had the same problem, received by email to check, clicked on the link and it goes nowhere, then, how to check when the link does not work?   There should be a way for this brainless and easy...

    Correct the problem so that the account can be verified...

    either way, I changed the password and tried to do the check after and the process stopped, this is why the account only was not checked properly... Please fix

    Hi Tim,.

    I understand that it is a little frustrating when such a thing happens. This problem may occur when there are problems with the browser.

    I suggest to cut and paste the link on another browser and visit the link to check if it works very well.

    Please check the status of the Microsoft Hotmail network to see if it has problems. To do this, please visit https://status.live.com to check the status of the network.

    If the networks are functioning properly, please follow the instructions below to clean your browser history.

    • Open the Internet Explorer browser: press CTRL + SHIFT + DELETE , and then click on Remove.

    In addition to this, you can try to solve the problems Internet Explorer if you are still having the same problem, following article below:

    What to do if Internet Explorer does not work

    Hope this information was useful. Let us know the results once you have tried the following steps.

    Thank you

  • Dreamweaver connects to the database

    Hi all, I really need help with this, I contacted my hosting companies support and they think that it is not a problem on the server side.
    Either way, I did the same thing in the past with no problems whatsoever.

    I get this error message when you try to create a new connection to my database: "your php server does not have the MySQL module loaded or you cannot use the mysql_ connect functions (p)."

    Compant hosting has disabled mysql_pconnect(). I know about this, because a different application stopped working when the hosting company disabled this without talking to someone. Dreamweaver automatically uses pconnect, but everything I've done is removed the 'p' and everything worked.

    Now, if I do this, I try to create a recordset and choose the connection, then I get ' * no table found ' in the drop-down list table. This happens with allmy old connections that worked.

    For this reason, I can't do anything now at all with my database! I was wondering if anyone has had this problem before, or if someone has any suggestions at all! see you soon

    Dave

    PS Sorry about the stupid screen name, does anyone know how I can change this?

    Powderskier9@Gmail wrote:
    > - This is a long winded explanation, but I think that each of the steps
    > are required to confirm that you have the required functionality and the files
    > for this configuration (2.24 Apache, PHP, MySQL 5.0.37 5.21) to work on a Windows PC.

    Yes, this is a long-winded explanation, and you deserve credit for you
    perseverance. However, it is very clear that you missed an essential step
    When you use the PHP 5.2.1 Windows Installer, when you are prompted to
    Choose what extensions to install. If you have selected the right
    at this point, all extensions should have been operational in
    about five minutes.

    I have detailed instructions on my website for the use of Windows install:

    http://foundationphp.com/tutorials/php_installer.php

    --
    Adobe Community Expert David Powers
    Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • Can connect to Skype with a single account, but not with the other

    I am able to connect to Skype with my own login but not with the credentials of my friend on his pc. I can however connect with her details as well as mine on my pc?

    You need to upgrade your Internet Explorer to the latest version of IE8 for Windows XP.

    http://filehippo.com/download_internet_explorer_xp/

  • Instructions within a packet can refer to the links in the database

    Hi all

    I was just curious to know, what's going to happen in this case

    CREATE OR REPLACE PACKAGE BODY "TESTUSER". "' TESTPKG ' as
    procedure testproc is
    n number: = 0;
    Start
    Select count (*) in ps_tab@dblink n;
    end;
    end testpkg; » ;

    It is valid to dblink in a package body?

    Concerning

    Published by: user13332773 on March 6, 2011 22:26

    Hello

    Yes, you can... !!

    -Pounet N

  • Failed to create database link when the password has a special character

    I am trying to execute the following statement in sqlplus

    create alpha link database to connect to scott identified by tiger! using "db_alpha".

    Note that the password of the account has an exclamation mark inside. the command fails. I tried to put the password in quotation marks (') and double quotes (""). Working the double quotes, but then the link does not work properly.

    We are required to have a special character in our passwords... so, how can I get this special character in the password for the database link?

    Thanks in advance,
    Darren

    Darren2 wrote:

    #2 attempt:

    SQL > create database link BLAH connect to user2 identified by 'tiger!' using 'BLAH ';

    Created database link

    SQL > salt {color: black} {color} ect {color: black} {color} * en {color: black} {color} om my{color:black}{color}_{color:black}{color}table{color:black}{color}@BLAH;
    Salt {color: black} {color} ect * en {color: black} {color} om my{color:black}{color}_ta{color:black}{color}ble{color:black}{color}@BLAH
    *
    ERROR on line 1:
    ORA-02085: link on the database of BLAH. AAA. BB. CCC. DDD connects to
    DEVDB. AAA. BB. CCC DDD.

    For me, that makes no sense. If the link does not work... How did get the "invalid username/password" in the #1 attempt?

    Learn about the GLOBAL_NAMES initialization parameter. Default GLOBAL_NAMES = TRUE, which means the database link is required to have the same name as the database in which it connects. Database name DEVDB link or define GLOBAL_NAMES = FALSE:

    SQL> create user Darren2
      2  identified by "tiger!"
      3  default tablespace users
      4  quota unlimited on users
      5  /
    
    User created.
    
    SQL> grant create session to Darren2
      2  /
    
    Grant succeeded.
    
    SQL> create table Darren2.tbl as select 'Darren2' name from dual
      2  /
    
    Table created.
    
    SQL> create database link sol10@Darren2
      2  connect to Darren2
      3  identified by "tiger!"
      4  using 'sol10'
      5  /
    
    Database link created.
    
    SQL> create database link sol11@Darren2
      2  connect to Darren2
      3  identified by "tiger!"
      4  using 'sol10'
      5  /
    
    Database link created.
    
    SQL> select  *
      2    from  tbl@sol10@Darren2
      3  /
    
    NAME
    -------
    Darren2
    
    SQL> select  *
      2    from  tbl@sol11@Darren2
      3  /
      from  tbl@sol11@Darren2
                *
    ERROR at line 2:
    ORA-02085: database link SOL11.REGRESS.RDBMS.DEV.US.ORACLE.COM@DARREN2 connects
    to SOL10.REGRESS.RDBMS.DEV.US.ORACLE.COM
    
    SQL> select value from v$parameter where name = 'global_names'
      2  /
    
    VALUE
    --------------------------------------------------------------------------------
    TRUE
    
    SQL> select * from global_name
      2  /
    
    GLOBAL_NAME
    --------------------------------------------------------------------------------
    SOL10.REGRESS.RDBMS.DEV.US.ORACLE.COM
    
    SQL> alter session set global_names=false
      2  /
    
    Session altered.
    
    SQL> select  *
      2    from  tbl@sol10@Darren2
      3  /
    
    NAME
    -------
    Darren2
    
    SQL> select  *
      2    from  tbl@sol11@Darren2
      3  /
    
    NAME
    -------
    Darren2
    
    SQL> 
    

    I don't have two databases, so in my sol10 database I create two database links sol10@Darren2 and sol11@Darren2 both pointing to itself (back to sol10 database). That's why I use qualifiers link db. The two links you connect as a Darren2 user with password Tiger!. The global database name is sol10 and initialization of setting global_names = true. As you can see what global_name (sol10) corresponds to the name of the link in sol10@Darren2 db (again, the link name is sol10 and Darren2 is qualifying link) select vai db link works OK. But the sol11@Darren2 link fails because the name sol11 link does not match the name db global sol10. However, as soon as I change global_names false, sol11@Darren2 works fine. It will be useful.

    SY.

    Published by: Solomon Yakobson on January 1st, 2009 08:41

  • Database link during the updating of the validation

    Hello everyone,

    I am trying to create a materialized view using a link of database as a connection between two oracle databases.
    The data source must be oracle 10.2.0.3 and destination must be a 10.2.0.4 database.

    There is in principle no problem to create materialized views that serves the database connection link.
    So especially on request refreshes the excellent work.
    The only thing that doesn't work is one on materialized view fast commit refresh.
    Oracle is the following:

    Error report:
    SQL error: ORA-12054: cannot set the attribute ON COMMIT refresh for the materialized view
    12054 00000 - "cannot set the refresh attribute COMMIT for the materialized view.
    * Cause: The materialized view did not meet the requirements for update to
    moment of validation.
    * Action: Specify only valid options.

    In addition, I have to say, that there is a log table.
    The remote user has all rights on the table itself and the table of the newspaper (for testing purposes).

    I read on the difficulties concerning the links to the database and validation in metalink materialized.

    So, can someone tell me, if the problem is still present, or if I do something bad terrribly?

    Any serious comment on this topic would be great.

    Cann't you use commit to MV based on a remote table. Instead of you commit set refresh interval (NEXT section).

  • problem reconfigure everything. in the replication after the database crash recovery

    Dear friends, I have little problem in replication,.
    I have 2 databases DB1 and DB2 configured as Multimaster replication and My DB1 is master def. Now my master got DB2 database crashed and replication topology displayed in red color.
    So I again created DB2 database. So I tried to bring this new DB2 replication again some of the operations being on my site of master def.
    So the problem is that I couldnot stop replication
    Can anyone suggest me how can I reconfigure again back in replication without removing the current group of rep

    I tried suspend replication by Lee. intervention but couldnot

    Start
    () dbms_repcat.suspend_master_activity
    gname = > 'REPMG');
    end;

    can someone solution
    Note:
    my database got crashed and I recreated the database and made available in the position while he was just before the crash

    Even if 'create you' repadmin and links from the database, there is no information about the configuration of replication (repgroup (s), repobjects etc.) in the database. Also, of course, the deferred transaction queue has no entry.

    You must configure replication scratch 'from '.

  • How s/n know when and what account perform a function using the database link?

    Dear,

    My application of the CIM team asked DBA to create new function and run it. Function must use the database link for remote database data. So I need to create a new database to their licensing link. Cause we guess we'll experience the performance issue after the user performs this function, or another question and errors may occur. So we want to know when and who use this feature that connects to a remote database through the new database connection in advance. And I also need to know when and which connect to the remote database using this new database link. We have no idea to get this information?  Can anyone recommend how do? Thank you very much.

    Best reqards, Otis.

    Check what business purpose, it will solve.  If the function is so safe, why everyone will use. Only admin people should access.

    All of these additional controls of this kind must be avoided as much as possible to improve the overall performance of the application.

    Still if you need, see the database audit mechanism, specifically designed for this type of activity.

    Kind regards

    Harman

  • I bought two subscriptions on a single account. The account is blocked

    ! I bought two subscriptions on a single account. The account is blocked

    What should do?

    Contact support - for the link below, click on the still need help? option in the blue box below and choose the option to chat or by phone...

    Make sure that you are logged on the Adobe site, having cookies enabled, clearing your cookie cache.  If it fails to connect, try to use another browser.

    Creative cloud support (all creative cloud customer service problems)

    http://helpx.Adobe.com/x-productkb/global/service-CCM.html ( http://adobe.ly/19llvMN )

  • image uploaded to the database link

    Hello

    I downloaded the images in my server so now I want to show on different pages using php and mysql, so can someone tell me how I can do this in dreamweaver php codes or manual?

    Please begin your answer of the way to start step I have to do after the download of the image, I also know a database table also be require for images should this complete tutorial please. Therefore, please answer thank you.

    tanveerh86603130 wrote:

    I mean if I have uploaed images manually on the server and now when I create a new page in php with the mysql database and want to inlucde one of these uploaded image dynamcally, so how I can do, how can I create table for these images and then use this table for u place links to this image?

    If youre doing this manually - you should now have all your images in a folder on your server.

    To get dynamically on a page, you must include the name of the image in the database table.

    Create another field in your database table called - model_image

    Then insert the name of the image in this area, associated with the mobile _name - nokia_1100.jpg, samsung_2300.jpg etc.

    Back in your page model_details.php use a query as I pointed out in the other thread:

    $model_details = mysql_query ("" SELECT * FROM mobile_phones WHERE model_id = ' $model_id ' ' ") or die (mysql_error ());

    $model_details = mysql_fetch_array ($model_details);

    Then echo the image of the page according to the model_id adopted in the link to the model_details.php page. (replace "folder_name' by the name of the folder in which images are stored)

    as well as its other fields:

    All this can be done through server Dreamweavers behaviors if you do want to write your own code. Don't forget the code that Dreamweaver now uses dynamic development is outdated.

Maybe you are looking for

  • screen locking iOS 10 App Mail notifications

    I'm the only one who thinks that the appearance of notifications email on an iPhone app in iOS 10' 6 is ridiculous? Each comes so huge, that he takes half of the estate of notification.  Is there a way to make nice and short as they used to be, or as

  • Star Wars

    Hello I am looking to buy the laptop of Star Wars with the graphics of Nicosia in it however I can't seem to find anywhere in England. Can someone please. Thank you

  • Toshiba touch pad does not

    HI.i have a Toshiba Satellite U300-113 laptop and the touch pad does not work. I tried to look for it under the mouse settings, but it is not there.it shows that the external mouse device.i visited recently and it worked then and when I came home and

  • How to get the microphone audio through speakers

    Original title: I want to talk in my microphone and hear what I speak STRAIGHT from the speakers. It happens in windows XP directly that you plug the microphone but not VISTA.__remember I don't want to record and listen... I want LIVE LIVE, pure!Reme

  • Do a recovery

    Media Center PC 854 h / XP Media Center Edition HPQ ThisWindowis the baby of My Ladys and what his ' do is when it starts to boot it stops right. I was wondering should I start in safe mode and boot from the HD?  I don't have a recovery disk or disk