Submit Your Article Webforumz RegistrationAnnouncements Contact Webforumz StaffContact
Home Resources Blogs Meet the Team Contact Register
 

Go Back   WebForumz.com > Putting it Together > Databases

Reply
 
LinkBack Thread Tools
Old May 3rd, 2006, 05:59 PM   #1
New Member
 

Join Date: May 2006
Location: london
Posts: 27
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Altering Power: 0 hasnain721 is on a distinguished road
Exclamation newbie help required plz

Hello there,
Iam a webmaster.
I started everything from scratch and made my website on my own research. All thanks to the internet.
Now i have decided to implimend a database in my website.
Can any one help me some tips getting started.
-Like which software to use to write the database.
-How to link it up to a server.
E.g.
If i have a travel agent website.
When my customers want to check a flight, they should be able to access my database which would be connected to British Airways's database and shows the customers the latest deals.

Would appreciate a reply.
Thank You
hasnain721 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old May 3rd, 2006, 07:15 PM   #2
Most Reputable Member
 

Join Date: Aug 2005
Location: North Wales, United Kingdom
Age: 23
Posts: 1,063
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Altering Power: 0 sypher has a spectacular aura about sypher has a spectacular aura about
Re: newbie help required plz

Are british airways going to give you access to their database?
__________________
North Wales Web Design - sypher design
sypher is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old May 3rd, 2006, 07:28 PM   #3
Reputable Member
 
craig's Avatar
 

Join Date: Sep 2005
Location: Preston, UK
Age: 23
Posts: 382
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Altering Power: 0 craig will become famous soon enough
Re: newbie help required plz

lol
craig is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old May 4th, 2006, 11:16 AM   #4
New Member
 

Join Date: May 2006
Location: london
Posts: 27
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Altering Power: 0 hasnain721 is on a distinguished road
Re: newbie help required plz

Well,
I just gave u an example.
Can u help me plz ?
hasnain721 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old May 4th, 2006, 11:40 AM   #5
Most Reputable Member
 

Join Date: Aug 2005
Location: North Wales, United Kingdom
Age: 23
Posts: 1,063
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Altering Power: 0 sypher has a spectacular aura about sypher has a spectacular aura about
Re: newbie help required plz

PHP/mySQL

Code:
@$link mysql_pconnect('localhost''username''password');
if (!
$link) {
   die(
'Not connected : ' mysql_error());
}

// make nexus the current db
@$db_selected mysql_select_db('database_name'$link);
if (!
$db_selected) {
   die (
'Can\'t use database : ' mysql_error());

You change the above details to fit your own myql database which is situated on your host.

You can now do commands to mysql via php such as fetching records to display etc.
__________________
North Wales Web Design - sypher design
sypher is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old May 4th, 2006, 11:46 AM   #6
New Member
 

Join Date: May 2006
Location: london
Posts: 27
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Altering Power: 0 hasnain721 is on a distinguished road
Re: newbie help required plz

Suppose iam designing a database for a music store .
How do start ?
Do i use the code which u just gave me ?
hasnain721 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old May 4th, 2006, 12:25 PM   #7
Most Reputable Member
 

Join Date: Aug 2005
Location: North Wales, United Kingdom
Age: 23
Posts: 1,063
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Altering Power: 0 sypher has a spectacular aura about sypher has a spectacular aura about
Re: newbie help required plz

Do you know the basics of web design?
__________________
North Wales Web Design - sypher design
sypher is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old May 4th, 2006, 03:12 PM   #8
New Member
 

Join Date: May 2006
Location: london
Posts: 27
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Altering Power: 0 hasnain721 is on a distinguished road
Re: newbie help required plz

yea and i know quite a lot about access databases.
But i have no idea about web based databases.
hasnain721 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old May 4th, 2006, 04:06 PM   #9
Most Reputable Member
 

Join Date: Aug 2005
Location: North Wales, United Kingdom
Age: 23
Posts: 1,063
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Altering Power: 0 sypher has a spectacular aura about sypher has a spectacular aura about
Re: newbie help required plz

Ok you need to learn php/mysql.

Basically they go hand in hand. mySQL is a database format like Access but its for online.
PHP is used to interact with the database in order to add, edit, delete and show records.

http://www.freewebmasterhelp.com/tutorials/phpmysql
__________________
North Wales Web Design - sypher design
sypher is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old May 5th, 2006, 11:16 AM   #10
New Member
 

Join Date: May 2006
Location: london
Posts: 27
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Altering Power: 0 hasnain721 is on a distinguished road
Re: newbie help required plz

Thanks a million 4 helping me mate.
And 1 more thing.
I have a complete database for a video hiring company.
I made that in access 2003.
How do i convert it to sql?
hasnain721 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old May 5th, 2006, 02:43 PM   #11
Most Reputable Member
 

Join Date: Aug 2005
Location: North Wales, United Kingdom
Age: 23
Posts: 1,063
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Altering Power: 0 sypher has a spectacular aura about sypher has a spectacular aura about
Re: newbie help required plz

Hmm never tried it, but try the import functions in phpmyadmin.
__________________
North Wales Web Design - sypher design
sypher is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old May 5th, 2006, 05:29 PM   #12
Most Reputable Member
 

Join Date: Apr 2006
Location: Cornwall, UK
Posts: 1,307
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Altering Power: 0 ukgeoff has a spectacular aura about ukgeoff has a spectacular aura about
Re: newbie help required plz

Quote:
Originally Posted by hasnain721
Thanks a million 4 helping me mate.
And 1 more thing.
I have a complete database for a video hiring company.
I made that in access 2003.
How do i convert it to sql?
You don't covert to SQL. SQL is what it is, a Structured Query Language. Not a database system.

You can use SQL on Access.

Depending on what software tools you can get hold of or are pepaired to buy you can do a data transfer from one to the other.

If you have a tool that will let you dump the data along with the SQL for setting up the table, then you can just run that under MySQL and job done.

A more long winded way would be to set-up your database structure in MySQL, dump the data from Access as a CSV file, then upload the CSV file into MySQl.

Lots of fun.
ukgeoff is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old May 5th, 2006, 06:32 PM   #13
New Member
 

Join Date: May 2006
Location: london
Posts: 27
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Altering Power: 0 hasnain721 is on a distinguished road
Re: newbie help required plz

Ok
but how do i get a CSV file from my access database ?
hasnain721 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old May 8th, 2006, 09:41 AM   #14
Most Reputable Member
 

Join Date: Apr 2006
Location: Cornwall, UK
Posts: 1,307
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Altering Power: 0 ukgeoff has a spectacular aura about ukgeoff has a spectacular aura about
Re: newbie help required plz

Quote:
Originally Posted by hasnain721
Ok
but how do i get a CSV file from my access database ?
Suggest you read the help files or get an Access manual.
ukgeoff is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old May 10th, 2006, 07:04 AM   #15
WebForumz Member
 

Join Date: Nov 2005
Location: England
Posts: 71
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Altering Power: 0 iZone will become famous soon enough
Re: newbie help required plz

Look under File > Export. Then choose Text File under the file types. For the rest you'll want to look in the help like geoff suggests.
iZone is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Reply

Bookmarks

Tags
newbie , help , required , plz


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
CoreTechPro - help required please!! newbie! kitzi HTML, XHTML and CSS 5 November 1st, 2007 08:42 AM
JSP help required ScorpionKing Other Languages 2 August 27th, 2007 02:29 PM
Help Required Bradz HTML, XHTML and CSS 11 November 24th, 2006 04:10 PM
PHP help required :( mikka23 PHP 7 August 14th, 2006 05:38 AM
Help required H_Therapist HTML, XHTML and CSS 3 November 8th, 2005 08:09 PM


Search Engine Optimization by vBSEO 3.2.0 RC8