Nov 21, 2009

My Sql Database Help?

free web hosting
Open Discussion & Free Web Hosting > Computers & Tech > Databases

My Sql Database Help?

shnabo11
Ok, i am new at web design, i dont know too much about it... I was working on a website for about a month this is what i got, My Web , like i said, i dont know much.. i used FrontPage and did all of that, my current host is AFMU which uses MySQL, but the way it is set up I dont know how to acquire the URL of the database or any information i dont know what it means at all.. i just want to do a simple login feature, i mean this is my first website and i am learning so I think it would be a great feature to add in and learn. i can create data bases from there but do not know what to do afterwards, example: I Create a database name and a user this is what it leaves me with; NOTE! I did not change ANYTHING listed below, this is EXACTLY what it created for me, now that i got that off my chest, here it is:
CODE
Current Databases:
deatncom_logindb  
Users in logindb
deatncom_shnabo (Privileges: ALL PRIVILEGES)

Connection Strings
Perl $dbh = DBI->connect("DBI:mysql:deatncom_logindb:localhost","deatncom_shnabo","<PASSWORD HERE>");
PHP $dbh=mysql_connect ("localhost", "deatncom_shnabo", "<PASSWORD HERE>") or die ('I cannot connect to the database because: ' . mysql_error());
mysql_select_db ("deatncom_logindb");


Could some on please tell me how i use this information??? please..

I appreciate the time you took to read this, and if you know what to do please post, thank you very much

 

 

 


Comment/Reply (w/o sign-up)

pyost
In order to connect a web site with a MySQL database, you will need to know more about web development than just using Microsoft FrontPage - you will also need to learn PHP (or ASP, but the former is a better option). However, prior to doing so, it would also be a good idea to start dealing with HTML code instead of using a WYSIWYG (What You See Is What You Get) editor (e.g. FrontPage, Dreamweaver). Be aware that PHP isn't easy, and that it will take at least a month of regular practice for you to be able to create a hack-proof and secure login system.

If all this looks like a too big step to you, there is always the option of using a CMS (Content Management System) for your web site. These are great because they offer easy content management along with a user-friendly interface, as well as a registrations system (in most cases). I must warn you, though, that this option too requires a little HTML/PHP knowledge in order to use it to its full potential. Even if you do decide on the first one, examining how a certain CMS works is a great way of learning new things. Or at least that is my experience smile.gif

 

 

 


Comment/Reply (w/o sign-up)

Arbitrary
Pyost is right--you definitely need more than just FrontPage.

Okay, if you've already created a database, then just paste the code that was given to you in a file. I'll go with PHP for now:

CODE
PHP $dbh=mysql_connect ("localhost", "deatncom_shnabo", "<PASSWORD HERE>") or die ('I cannot connect to the database because: ' . mysql_error());
mysql_select_db ("deatncom_logindb");

Paste this in a .php file and replace <PASSWORD HERE> with the password you specified while creating the database. Once you run the file, the database connection will be opened. Also remember to put <?php and ?> around the PHP code.

Then, afterwards, you want to create a table in the database to hold your login information. (Use PhpMyAdmin if you're using MySQL) You could go with three fields (username, password, email, id) for a very very simple user registration. For the username, password, and email you should leave the field type as varchar with a length of your choice. For the id, use a type of int and set it as a primary key. Also, under extras, set the id to 'auto_increment'. The id is mostly for internal tracking purposes and won't be of much use to the end-user.

Under the different options, you shouldn't need to touch collation, attributes, and null. Default you can set if you want there to be a default value for each field. (Not really applicable in your situation, I think)

Clicking save should also generate PHP code that can be used to create the exact same table if you paste it in a php file.

Then, in order to access the table, you should use mysql. First you'd want to create a registration page (let's say called register.php). In it you'd have:

CODE
<form action="register.php" method="post">
<label for="username">Username: </label>
<input type="text" name="firstname"><br />
<label for="password">Password: </label>
<input type="password" name="password"><br />
<label for="email">Email: </label>
<input type="text" name="email"><br />
</form>


As a side note, I typed this in the browser, so there's no guarantee it'll work right off the bat. Now, to break apart the tags within <form></form>...

[a] the action attribute within <form> -- this is where the form directs to, and it's also where you want to put the php code to execute data received from the form
[b] the method attribute within <form> -- this tells the browser how to send the information. It can either be POST or GET. If it's GET, the data will appear in a website's url--ex: www.example.com/something.php?actid=5 If it's POST, the data is hidden. For something sensitive like registration or logging in, POST should always be the one used
[c] the name attribute in the input tag -- this is the name that's used by PHP to access the data--you'll see later.

Moving on...

Now, to access the form data that a user has entered, in register.php we'd want to have:

CODE
<?php
$username = $_POST["username"];
$email= $_POST["email"];
$password= $_POST["password"];
?>


Suppose the user entered helpless as the username, iowf83M as the password and weoiwho@gmail.com as the email. Then the variables $username, $email, and $password should contain the respective data. The array variable $_POST is defined by PHP to access data from a form with a method of POST. The ["username"] part of the variable is the value defined in name in the input tag.

Before you do anything with the password, you should md5 has it for security purposes. Ex:

CODE
<?php
$password = md5($password);
?>

md5 is a (nice) built-in function in php that does what it says.

Once you've got the data within variables and hashed accordingly, you'd want to use this to insert the data into the database:

CODE
<?php
mysql_query("INSERT INTO <table_name> (username, password, email)
VALUES ('$username', '$password', '$email')");
?>


To break the mysql query down, INSERT INTO is very obvious. Replace <table_name> with the name of your table. (Most likely users or something like that). The stuff between the parentheses are the fields you want to insert into--username, password and email. The values correspond to their respective fields.

Now that the data is in the database, to retrieve it, we use another mysql query.
CODE
$username = $_POST["username"];
$email= $_POST["email"];
$password= $_POST["password"];

$result = mysql_query("SELECT * FROM users WHERE username='$username' AND password='$password'");


The select query gets the user where username is the username entered and password is the password entered. If $result exists, then the user can be logged in.

This is the most basic aspects of a login system, and it's not even fully complete yet. For a secure login system, check out http://www.devshed.com/c/a/PHP/Creating-a-...P-Login-Script/ . Of course, you'd need stripslashes to make sure that sql injections won't work. And as incoherent last words, it's best to use a framework for larger projects (I recommend CakePHP)

Comment/Reply (w/o sign-up)

yordan
Thanks to Arbitrary for this very complete introduction.
I would also add a suggestion.
If you are hosted here at astahost, and if you like "learn-by-example", I would suggest you to use the Astahost's "Fantastico" facility, and install a phpbb forum or a 4image gallery, have a look at the sources generated, and see how they manage the database connection and user/passwords handling.
I really think that looking at other people's programs help understanding a lot.
And, of course, having a working system, which correctly connects to a correctly database, is really helpful.
Then, comparing the working scripts to your faulty scripts could help correcting your errors.
And, of course, when you will be grown, you will start writing down your own programs from scratch, and they will be far better than any examples that could be provided.
Regards
Yordan

Comment/Reply (w/o sign-up)


Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

This textarea will convert to Rich-Text automatically (IE, Firefox, Chrome)

Similar Topics

Keywords : sql, database,

  1. Free Or Opensource Database/schema Browser?
    Alternatives to TOAD or PL/SQL Developer (6)
  2. How To Understand A Database Schema
    A very nice and simple tutorial (9)
    Yesterday while i'm seaching for a data model and database schema at the Library of Free Data
    Models for a new project of a friend of mine i found there this nice and simple tutorial on How to
    Understand a Database Schema . As its name says, this tutorial will help you to better understand a
    Database Schema and covers the following basics topics that every Database Schema must define:
    QUOTE Primary and Foreign Keys. One-to-Many and Many-to-Many Relationships. Inheritance.
    "Rabbit's Ears", (Recursive relationships). The Scope of this tutorial is ....
  3. Best Database
    (16)
    What is the best free database if some one trying built a social networking website? And how to
    operate it with dreamweaver 8?....
  4. Some Useful Database Links.
    (7)
    I thought I would take a moment to point the users here to some of the database resources available
    for reference and learning. First I will start with actually designing the database. This site by
    R937 covers the basics of database design. The author is professional database guru and a frequent
    helper at the at DB forums listed below. The Library of Free Data Models is an excellent
    resource for finding data models for projects you may have or as examples of well put together data
    models. With around 500 data models the chances are you find something at least cl....
  5. Database Access On Remote Server W/jsp
    (2)
    Hello: I am new to JAVA and server-side applications and have a dumb question. I have set up
    Tomcat on my machine and created a JSP program to query an Access database using a DSN-Less
    connection. If I publish the page to a webserver and include the .MDB file will it work? I'm
    not sure exactly what needs to be packaged with my Java application to make it work. Since I
    don't have a remote server that supports .jsp I cannot really test it. I'm assuming that
    JDBC driver would be bundled with my site but not sure. Thanks!....
  6. Space Needed For Database
    (10)
    Iam assuming the information in the databases i will create will be stored in the 500 MB space i
    get, but since 500MB isn't enough iam wondering if you guys can tell me how much bytes the
    following take: Varchar(x),Tinyint,Text,date,smallint,mediumint,bigint,float.... And the rest
    present when you add/edit a row in a table. Also what are the ranges of tinyint,smallint,mediumint
    and big int....
  7. Mysql Database Entry By Excel Sheets
    (2)
    Hello .. I would like to ask if i can use use Microsoft excel files in order to make entries to
    mysql database. Thanks....
  8. Mysql Database Management
    (1)
    Hi i am new, I have a problem in understanding the query decomposition in D-DB. Can anyone help me
    to understand the first question of the exercise 25.21 of Elmasri-Navath 4th edition? Consider the
    following relations: BOOKS (Book#, Primary_author, Topic, Total_stock, $price) BOOKSTORE (Store#,
    City, State, Zip, Inventory_value) STOCK (Store#, Book#, Qty) Consider a distributed database for a
    bookstore chain called National Books with 3 sites called EAST, MIDDLE, and WEST. Consider that
    BOOKS are fragmented by $price amounts into: B1:BOOK1:up to $20. B2:BOOK2:from ....
  9. Accessing Ms Access Database From A Centralized Location?
    (10)
    Hi I am a manager at a trading/wholesaling company (and have no programming background). I
    customized the Northwind sample access database to make invoices and keep accounts for my company.
    We now opening another office at a distant location. So, the order entry will be done at two
    points(we plan to use the same Access database). I am not able to figure out how to access the same
    MS Access database from two different location(as LAN can't be used). Moreover, we can't
    afford to pay huge sums to the software developers. Can intranet or uploading the database t....
  10. Integrate Access Database Onto Intranet Site
    Looking to integrate access database into my intranet site (5)
    Hey guys, im new here and am looking for answers /tongue.gif" style="vertical-align:middle"
    emoid=":P" border="0" alt="tongue.gif" /> Firstly, i have designed a database using M$ access, it
    consists of multiple forms which i plan to host on an intranet website, i need to be able to add
    records directly from the form on the intranet website aswell as being able to edit/review current
    entries on forms in the database. My question is, how would i go about integrating these forms onto
    the intranet website? i plan on keeping the database and the intranet site on the same d....
  11. Database
    prblem with it (1)
    i have free script but it is working fine on a lot of sites i tried to use it to my web site ....i
    edit its config.php right and but my database name and my user name and password every thing right
    and when i try to install it it gives me this error can`t connect to database please choose file
    from this mobile.sql can any body help plz coz i tried huderd of times and no thing happend....
  12. Connecting To A Remote Database
    (9)
    I wondered if anyone here can help. I have a database on a remote server (A). I want to access it
    through a php script on a different server C. I have allowed access on (A) in Cpanel - mysql dbases
    - Remote Access by putting the IP address of server C The host of server (A) has also whitelisted
    the IP of server C. Though I am having trouble connecting from server C which is with a different
    webhost. any ideas how to get round this? I have though of SSH forwarding, but I think this can
    only be used to connect a client - e.g. my pc to the remote server A. I do not ha....
  13. Need Help In Database Auto_increment
    (9)
    i am creating a game and i set when someone registers than he gets id...in "extra" i have set it to
    be "auto_increment" but whenever new player signs up he gets number bigger than 210...(my first id
    was 211,next was 212,third was 213,fourth got 214) how to set it to go from 1 to infinite? thnx....
  14. Database Size?
    So how big is everybody's MySQL database? (10)
    Well I know that MySQL databases can get rather big, so I was just wondering how big everybodies
    databases were? Do you have really big ones, or are they relatively small? Also what do you store in
    them? (just text, or binary data as well)....
  15. How Many Concurrent Users For Oracle Database?
    This is to analyse and get perfect result for How many concurrent use (1)
    Hi friends, How many concurrent users can practically access the oracle database?
    they say tht the figure is hundreds of thousands users...is there any exact figure? or does the
    number of concurrent users depend on any other factors as wel? I think depend on parameter
    1.session 2.processes session Specific connection of a user to an Oracle instance through a user
    process. A session lasts from the time the user connects until the time the user disconnects or
    exits the database application. Multiple sessions can be created and exist concurrently for ....
  16. Database Programming In Vba 6.0
    (1)
    hi , i need some sample program in database.thanks....
  17. Need Info On Database Programming Courses
    Oracle Database Programming (2)
    I know Database Programming on MS-ACCESS, now i am planning to go for some other Database
    Programming courses, People told me to go for Oracle or VisualAge. Can anyone told me to start with
    which one and how long is the course period and which one is easy and is it similar to ms access or
    somthig different.....
  18. Permission Problem With Mysql Database Creation
    Please Help! (8)
    I seem to have a problem with accessing my database with proper permissions. I have set the my
    database correctly giving my db username all priviliges yet i seem to be unable to even log on with
    this username with a denied access error. Any ideas on resolving this?....
  19. Is It A Good Practice To Store Image Or Other Binary Files Directly In A Mysql Database
    (6)
    Hello to all of you beautifull people out there, I am new to MySQL, i just wanted to know if its a
    good practice to directly store images and other binary files in a MySQL database. Any one with
    help? Thanks....
  20. What Is Maximum Capacity Of Astahost MySQL Database?
    (11)
    I'm sorry about this topic. I'm a new user and my english is not very good. I want to learn
    the max capacity of mysql db.....
  21. MySQL Output Database Question
    (19)
    I am new to MySql and have just created a database after using a script. My problem is not the
    script, but what it says about putting it into the output file. I cant figure out the right terms
    to put it in, I keep getting errors. I try using; SELECT*FROM 'database name' WHERE
    'location' but it isnt working. I'm lost with this stuff, I really am. Can someone
    please help me out?....
  22. MS-database To MySQL
    I'd like to batch them (6)
    Hi, maybe one of you already came across this, so I ask. I'll continue searching on. I've
    got two vocable trainers, one is Windows-native, the other one is on the web. While I can't
    control the output of the Windows-thing (so I can't export them to a *csv or something), I can
    write an import script. But since I'm not that great with Regular Expressions and don't know
    anything about *.mdb (that is MS SQL, isn't it?) files, I would need some finished thing to make
    out the field information and put it in arrays or something more readable. It wou....
  23. Database Program With GUI
    (14)
    I am looking for a program to create SQL databases through a GUI to simplify it, the only things i
    can seem to find are command prompt things and i can't work with them. I like MS access and
    would like something similar to that if possible. I am working with windows at the moment can anyone
    recommend a program i can use (preferably free) Many thanks....
  24. The Best Database
    What do you think is the best database? (48)
    Ive been planning to create a online application which requires tons of stuff from database. Ive
    been using interbase, at first it was good but after a month i find it not user friendly at all...
    Its to hard to code in php.. Can any of you guys give me a good database which is easy to use?....
  25. Mirror My MySQL Database To Another Mysql Server
    (7)
    Hi..I want to ask if its possible to automatically mirror my mysql databases into another mysql
    server?or create a small php script to do this? The reason is because, we all know that database is
    very improtant if we have dynamic website. I have my forum hosted and i want to automatically
    mirror this or backup into another mysql server(free). Like in freesql.org. So that im not afraid
    that i forgot to backup my database..also i have one central backup database. Thanks for the
    help..Im looking forward for this posibility.....
  26. Need Advice On Creating Online Music Database
    ps - dont know anything about databases! (6)
    I need to create a database of around 1000 music albums that I can put on my site, with the ability
    to search the database according to several different criteria. Being a complete and total NOOB to
    the world of databases, can anyone point me in the direction of some software that will let me
    create a good-looking and functional database, but that isn't too complicated for me to use?!
    Sounds like a tall order I know, be grateful if anyone can help though. Thanks!
    Notice from microscopic^earthling: Topic edited to reflect content....
  27. MySQL Database Problems
    (8)
    My friends have a little forum running here . The problem is that quite often we get the following
    message when we try to open the page: QUOTE Warning: mysql_connect(): Can't connect to
    local MySQL server through socket '/var/lib/mysql/mysql.sock' (2) in
    /home/vhosts/rohit.bizhat.com/forums/db/mysql4.php on line 48 Warning: mysql_error(): supplied
    argument is not a valid MySQL-Link resource in /home/vhosts/rohit.bizhat.com/forums/db/mysql4.php on
    line 330 Warning: mysql_errno(): supplied argument is not a valid MySQL-Link resource in
    /home/vhosts/roh....
  28. How Can I Import Csv Files To My MySQL Database?
    I was able to export but where's import? (3)
    I am having hard times finding that import csv in the mysql phpmyadmin. I once worked on some csv
    files and someone imported it on the mysql server. I was not able to ask him. Does someone know how
    can I import csv files in mysql server?....
  29. Embedded Database
    Embedded Data base at client side, (7)
    Hi, Now its the era of Embedded databases, no more db servers, no more host,Because with embedded
    db you can get all those options, what you are used to get with DB Servers. Some of Embedded DB Are
    1) Cloudscape From IBM (NOW Derby from ASF) 2) HSQLDB (OpenSource) and many more Feel the power of
    EDB Cheers Arunkumar.H.G....
  30. phpBB Database Transfer
    Anyone here knows how to? (10)
    Hello, i'm a newbie in using phpBB and I still lack knowledge in mySQL database. How do I
    transfer the datas(users,configs, all of them) contained in my current forum to another one in
    phpBB? I hope someone can help, a short but detailed tutorial would be good. Example is, if I want
    to move to a new host and I want to transfer all the accounts on my old forum to the new one. Thanks
    in advance, hope anyone here knows how to.....

    1. Looking for sql, database,

See Also,

*SIMILAR VIDEOS*
Searching Video's for sql, database,
Similar
Free Or Opensource Database/schema Browser? - Alternatives to TOAD or PL/SQL Developer
How To Understand A Database Schema - A very nice and simple tutorial
Best Database
Some Useful Database Links.
Database Access On Remote Server W/jsp
Space Needed For Database
Mysql Database Entry By Excel Sheets
Mysql Database Management
Accessing Ms Access Database From A Centralized Location?
Integrate Access Database Onto Intranet Site - Looking to integrate access database into my intranet site
Database - prblem with it
Connecting To A Remote Database
Need Help In Database Auto_increment
Database Size? - So how big is everybody's MySQL database?
How Many Concurrent Users For Oracle Database? - This is to analyse and get perfect result for How many concurrent use
Database Programming In Vba 6.0
Need Info On Database Programming Courses - Oracle Database Programming
Permission Problem With Mysql Database Creation - Please Help!
Is It A Good Practice To Store Image Or Other Binary Files Directly In A Mysql Database
What Is Maximum Capacity Of Astahost MySQL Database?
MySQL Output Database Question
MS-database To MySQL - I'd like to batch them
Database Program With GUI
The Best Database - What do you think is the best database?
Mirror My MySQL Database To Another Mysql Server
Need Advice On Creating Online Music Database - ps - dont know anything about databases!
MySQL Database Problems
How Can I Import Csv Files To My MySQL Database? - I was able to export but where's import?
Embedded Database - Embedded Data base at client side,
phpBB Database Transfer - Anyone here knows how to?
advertisement



My Sql Database Help?

Affordable Web Hosting, Low cost Web Hosting - ComputingHost.com