Forum     

Go Back   Digit Technology Discussion Forum > Portables, Peripherals and Electronics > QnA (read only)
Register FAQ Calendar Mark Forums Read

QnA (read only) Mods please help transfer the contents of this forum to proper sections. :)


 
 
LinkBack Thread Tools Search this Thread Display Modes
Old 30-07-2005, 01:32 PM   #1 (permalink)
un
Right Off the Assembly Line
 
Join Date: Aug 2004
Posts: 43
Default Required help in setting up database for webportal


I have 2 issues, hope forum helps me in resolving it....

1. For a academic project assignment, I plan to create a webportal, wherein our classmates can create a their usr id and pwd & login in member area, which enables to them to enter thier profile & also enables them to update it later on.
Please instruct me, how I can proceed for creating the member page, means which tools I can use & how. Also plz guide me for the useful links in above topic.

2. Meanwhile I have created the website excluding the memember area, however the it can best viewed in 1024x768 resolution, because I created website on the computer having same resolution.
But I want to make it standard, becuase my friends are using the monitor whr max resoultion is 640x480, so the web pages looks some what different, so I want to make all the text & graphics comes under the screen, so that their is no use of horzonital scroll bar in either resoultions.
un is offline  
Advertisements. Register and be a member of the community to get rid of them.
Advertisement

Old 31-07-2005, 08:05 AM   #2 (permalink)
In The Zone
 
vandit's Avatar
 
Join Date: May 2005
Location: If I had a webcam u could have seen me, before your eyes.
Posts: 458
Default

Would u like to create ur forum ( meeting ur former needs) ?
If so u can create it here
www.phpbbforfree.com
__________________
Searching for dell studio 15 ??
dell studio 15 review @ my blog

vandit007.blogspot.com

And remember the stylus that comes along with the touchscreens isnt meant for cleaning your ears !!
vandit is offline  
Old 31-07-2005, 08:07 AM   #3 (permalink)
In The Zone
 
vandit's Avatar
 
Join Date: May 2005
Location: If I had a webcam u could have seen me, before your eyes.
Posts: 458
Default

Would u like to create ur forum ( meeting ur former needs) ?
If so u can create it here
www.phpbbforfree.com
__________________
Searching for dell studio 15 ??
dell studio 15 review @ my blog

vandit007.blogspot.com

And remember the stylus that comes along with the touchscreens isnt meant for cleaning your ears !!
vandit is offline  
Old 31-07-2005, 09:59 AM   #4 (permalink)
In The Zone
 
Join Date: Feb 2005
Location: Pennsylvania, USA
Posts: 247
Default

@un: I would advise you to try out Drupal. It's a great content management software with member area/login and allows you to set privileges and stuff.

I assume you have a hosting account somewhere but if you don't, try hostachio internet solutions. I have an account with them for a while now and they've been just great. You can install dozens of applications like Drupal, phpBB, phpNuke, Mambo, chat softwares, shopping carts, etc. just by using their Fantastico scripts. It's really a one click install.

You can also code member area and login stuff youself using PHP.
geekysage is offline  
Old 31-07-2005, 10:32 AM   #5 (permalink)
un
Right Off the Assembly Line
 
Join Date: Aug 2004
Posts: 43
Default

Thanks,

geekysage,

vandit.

However my assignment is not create a forum, my requirment is user can enable the data to this account and can see the details whenever he requires and no user can see others data.

[/b]
un is offline  
Old 31-07-2005, 10:33 AM   #6 (permalink)
un
Right Off the Assembly Line
 
Join Date: Aug 2004
Posts: 43
Default

Thanks,

geekysage,

vandit.

However my assignment is not create a forum, my requirment is user can enable the data to this account and can see the details whenever he requires and no user can see others data.

[/b]
un is offline  
Old 31-07-2005, 01:51 PM   #7 (permalink)
In The Zone
 
Join Date: Feb 2005
Location: Pennsylvania, USA
Posts: 247
Default

Aight, here's what you can do for the:

1st problem
Quote:
You can also code member area and login stuff youself using PHP.
By an academic project, i assume your institute wants you to create the system yourself not copy or use another system. Therefore, you better start learning PHP. Using PHP-mySQL, such member profile w/ restricted access system can easily be created.

2nd problem
There are two solutions to this problem.

The first one is to use table widths in percentages in your site design, e.g.
Code:
<table width=100% height=100 class=geekysage>
NOT
<table width=900 height=100 class=geekysage>
This would solve the layout problem for any resolution.

The other more common solution used nowadays is to create the entire site with a fixed base width, aligned centrally, the base width is generally assumed to be 700-760 for 800x600 resolution. The remaining 100-40 pixels are left for the side scrollbars/other side toolbars and to ensure a definite layout. This way the site is properly visible in any resolution including and above the base resolution. Look at http://www.hostachio.com to get an idea. They have designed the site for people who have a resolution of 800x600 or more. Therefore if you visit the site you will see a patterned background on both sides of the pages while someone with 800x600 resolution will see the same page spread across the full screen and someone with 640x480 resolution will have to scroll horizontally to see the full page. Just set the base width to be around 600 if you are designing the site for people with 640x480 resolution, who are rare by the way.

You can code a primary table or div tag to set the base width and then keep on nesting per the requirement. e.g.
Code:
<html>
<body>
<table width=760 align=center>
<tr>
<td>
  <table width=700 height=200 cellspacing=4>
  <tr valign=top>
     <td width=30%>
     Help someone, use your knowledge. Remember, with great power comes great responsibility.
     
-Geeky Sage ;)
     </td>
     <td width=30%>
     No regrets, they don't work. No regrets now, they only hurt.
     
-Robbie Williams
     </td>
     <td width=30%>
     The greatest discovery of my generation is that a human being can alter his life by altering his attitudes of mind.
     
-William James
     </td>
  </tr>
  </table>
</td>
</tr>
</table>
</body>
</html>
Hope this helps. Let me know how your assignment goes.
geekysage is offline  
Old 31-07-2005, 03:48 PM   #8 (permalink)
un
Right Off the Assembly Line
 
Join Date: Aug 2004
Posts: 43
Default

Yes, geekysage.

1. Plz give direct to some links whr I can find stuffs on PHP-mySql.

2. Thanks for second issue.
un is offline  
Old 31-07-2005, 04:28 PM   #9 (permalink)
In The Zone
 
Join Date: Feb 2005
Location: Pennsylvania, USA
Posts: 247
Default

Well, i like this site: http://www.php-mysql-tutorial.com

By the way, try searching on google before you post a question on forums, this helps in avoiding redundance on the web. I mean, search for "php mysql tutorial" on google and you'll find this site among the top five results. Hope you got my point.

Good Luck.
geekysage is offline  
 

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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


 
Latest Threads
- by Krow
- by abhidev
- by topgear
- by clmlbx

Advertisement




All times are GMT +5.5. The time now is 07:03 AM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.

Search Engine Optimization by vBSEO 3.3.2