PHP Development
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsProgramming LanguagesPHP Development

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old August 13th, 2008, 11:11 AM
jadi's Avatar
jadi jadi is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Aug 2008
Location: New Jersey, USA
Posts: 190 jadi User rank is Corporal (100 - 500 Reputation Level)jadi User rank is Corporal (100 - 500 Reputation Level)jadi User rank is Corporal (100 - 500 Reputation Level)jadi User rank is Corporal (100 - 500 Reputation Level) 
Time spent in forums: 1 Day 7 h 24 m 28 sec
Reputation Power: 3
Unhappy Edit problem

My problem here is that:

I have a page that displays comments made by users for the CURDATE().
Users use a pop up window to add comments in which there are 2 drop down, 1 text box and 1 radio button.

Now, My challenge here is that I have to let them edit it.
I dont know how when he clicks edit button, a popup window again pops up with the data that was already there. And then he can make changes and submit and the comments page should also refresh.

Please can someone help me?

My pop up code is:
PHP Code:
<?php
session_start
();

if(!isset(
$_SESSION['loggedin'])) {
// If the session 'loggedin' is NOT set forward the user back to the login form with the error set
header('Location: login.php');
exit(); 
// Otherwise show the rest of the page (admin section)
}


$connection mysql_connect("localhost""root""") or die("Cannot connect to MySQL server: " mysql_error());
$db_selected mysql_select_db('tmetrix'$connection);



$CELLID $_POST['CELLID'];
$problem $_POST['problem'];    
$solution $_POST['solution'];
$comments = ($_POST['comments']);
$user $_COOKIE['Joe2Torials']['username'];
$rf = ($_POST['rfass']);


//This code runs if the form has been submitted 
if (isset($_POST['Submit']))  

//This makes sure they did not leave any fields blank 
if (!$_POST['CELLID'] | !$_POST['problem'] | !$_POST['solution'] | !$_POST['comments']) { 
die(
'You did not complete all of the required fields. Please go back and fill all the fields'); 




$query "INSERT INTO comments (CELLID, problem, solution, comments, date, username, rf)
VALUES('$CELLID', '$problem', '$solution', '$comments', CURDATE(), '$user', '$rf')"
;
mysql_query($query) or die(mysql_error());
mysql_close();


echo 
nl2br("Your comments have been sucessfully recorded. Thank you\n You can close this window now.");
?>



So how can we do this one?

Reply With Quote
  #2  
Old August 13th, 2008, 04:18 PM
sophos707 sophos707 is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jan 2007
Posts: 36 sophos707 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 11 h 35 m 20 sec
Reputation Power: 3
Could you explain more about your problem? I'm not sure exactly what is or isn't happening for you.

Reply With Quote
  #3  
Old August 13th, 2008, 04:21 PM
jsampsonPC's Avatar
jsampsonPC jsampsonPC is offline
stick a scissor in you eye
Dev Shed Intermediate (1500 - 1999 posts)
 
Join Date: Jun 2004
Location: Pensacola, Florida
Posts: 1,572 jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level) 
Time spent in forums: 1 Week 6 Days 15 h 19 m 57 sec
Reputation Power: 434
Shruti,

Did you see that you have your connection variables assigned different values than the values you have in your mysql_connect? Is this on purpose, or an oversight?
__________________
FREE Web Development Videos | PHP Reference | MySQL Reference | jQuery Documentation

Markup Validation | CSS Validation | Web Developers, get FireBug & IE Developer Toolbar

When seeking help:
Submit clear questions and code. Use syntax highlighting.
Be patient, and respectful. Don't abuse your access to
professional guidance - nobody here is obligated to answer
your questions, be thankful that they do.

Are you a good person?

Reply With Quote
  #4  
Old August 14th, 2008, 07:08 AM
jadi's Avatar
jadi jadi is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Aug 2008
Location: New Jersey, USA
Posts: 190 jadi User rank is Corporal (100 - 500 Reputation Level)jadi User rank is Corporal (100 - 500 Reputation Level)jadi User rank is Corporal (100 - 500 Reputation Level)jadi User rank is Corporal (100 - 500 Reputation Level) 
Time spent in forums: 1 Day 7 h 24 m 28 sec
Reputation Power: 3
Sorry, thats a mistake.......!!

The problem here is that I do not know how to go about this problem.

I have a page that lets you enter data and another page that displays those entered data. Now how do I edit them (i know by putting a button)?

The page that enters data has 3 drop down, 1 text box and 1 radio button.

How can I edit those?Can someone help me please?

Reply With Quote
  #5  
Old August 14th, 2008, 07:30 AM
jsampsonPC's Avatar
jsampsonPC jsampsonPC is offline
stick a scissor in you eye
Dev Shed Intermediate (1500 - 1999 posts)
 
Join Date: Jun 2004
Location: Pensacola, Florida
Posts: 1,572 jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level) 
Time spent in forums: 1 Week 6 Days 15 h 19 m 57 sec
Reputation Power: 434
Study this for ideas. Wrote it just for you
Warning, no testing has been done - wrote this here in this message window so there could be some small errors - it's not meant to be copy/pasted, but studied instead.

This opens up a security issue too. You need to verify that the user editing the comment is the owner of the comment.

php Code:
Original - php Code
  1. if (isset($_POST["update"])) {
  2.  
  3.   # Update Our Comment
  4.   $commentid = mysql_real_escape_string($_POST["commentid"]);
  5.   $newComment = mysql_real_escape_string($_POST["comment"]);
  6.  
  7.   updateComment($commentid, $newComment);
  8.  
  9. } else {
  10.  
  11.   # Get our comment
  12.   $commentid = (isset($_GET["id"])) ? mysql_real_escape_string($_GET["id"]) : 0;
  13.   $commentData = getComment($commentid);
  14.  
  15.   if (count($commentData) > 0) {
  16.     $output = "<form method='post'>
  17.                   <p>Comments:</p>
  18.                   <p><input type='text' name='comment' value='{$commentData["comment"]}' /></p>
  19.                   <input type='hidden' name='commentid' value='{$commentData["id"]}' />
  20.                   <p><input type='submit' name='update' value='update' /></p>
  21.                 </form>";
  22.   } else {
  23.     $output = "<p>No comment found.</p>";
  24.   }
  25.  
  26. }
  27.  
  28. function updateComment($id,$txt) {
  29.   $sql = "UPDATE userComments
  30.           SET comment = '{$txt}'
  31.           WHERE id = {$id}";
  32.   mysql_query($sql) or die(mysql_error());
  33. }
  34.  
  35. function getComment($commentid) {
  36.   $commentData = array();
  37.   $sql = "SELECT id, comment
  38.          FROM userComments
  39.          WHERE id = {$commentid}
  40.          LIMIT 1";
  41.   $rst = mysql_query($sql) or die(mysql_error());
  42.   if (mysql_num_rows($rst) > 0) {
  43.     $commentData = $row;
  44.   }
  45.   return $commentData;
  46. }

Reply With Quote
  #6  
Old August 14th, 2008, 07:30 AM
mikeyskona mikeyskona is offline
Contributing User
Dev Shed Novice (500 - 999 posts)
 
Join Date: Aug 2008
Location: Plymouth UK
Posts: 964 mikeyskona User rank is First Lieutenant (10000 - 20000 Reputation Level)mikeyskona User rank is First Lieutenant (10000 - 20000 Reputation Level)mikeyskona User rank is First Lieutenant (10000 - 20000 Reputation Level)mikeyskona User rank is First Lieutenant (10000 - 20000 Reputation Level)mikeyskona User rank is First Lieutenant (10000 - 20000 Reputation Level)mikeyskona User rank is First Lieutenant (10000 - 20000 Reputation Level)mikeyskona User rank is First Lieutenant (10000 - 20000 Reputation Level)mikeyskona User rank is First Lieutenant (10000 - 20000 Reputation Level)  Folding Points: 41071 Folding Title: Beginner FolderFolding Points: 41071 Folding Title: Beginner FolderFolding Points: 41071 Folding Title: Beginner Folder
Time spent in forums: 1 Week 9 h 22 m 45 sec
Reputation Power: 150
You can send information etc back to the mainpage, but using the opener tag.

ie: on mainpage.php you could have

var foo

in the popup you could use:
opener.foo = "blah";

i am assuming this is what you're on about?

If not, Sorry

HTH.

Mike

Reply With Quote
  #7  
Old August 14th, 2008, 08:08 AM
jadi's Avatar
jadi jadi is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Aug 2008
Location: New Jersey, USA
Posts: 190 jadi User rank is Corporal (100 - 500 Reputation Level)jadi User rank is Corporal (100 - 500 Reputation Level)jadi User rank is Corporal (100 - 500 Reputation Level)jadi User rank is Corporal (100 - 500 Reputation Level) 
Time spent in forums: 1 Day 7 h 24 m 28 sec
Reputation Power: 3
Thanks a lot sampson for making such an effort.
The issue that you are pointing(users can edit only his comments) is also an issue that I already had in mind.

Also sorry to mention but I am still not able to explain my self.


Ok, let me take it from the top.

I have a page that enters comments(data) and another that displays it. Now I want to let users edit their own comments(data).

Now I cannot just put them into the text box because 3 values comes from drop down and one from radio button.

So if say you display EDIT button after all the comments of the current user. Now when he clicks it how can I get dropdowns, radio with their present values and allow them to edit?


Am I making sense now?

Reply With Quote
  #8  
Old August 14th, 2008, 08:13 AM
jsampsonPC's Avatar
jsampsonPC jsampsonPC is offline
stick a scissor in you eye
Dev Shed Intermediate (1500 - 1999 posts)
 
Join Date: Jun 2004
Location: Pensacola, Florida
Posts: 1,572 jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level) 
Time spent in forums: 1 Week 6 Days 15 h 19 m 57 sec
Reputation Power: 434
Jadi,

You were making sense from the beginning

You're looking at everything together, which makes this much more complicated than it really is.

First things first. You want to pass a variable to the edit.php page that will be used to lookup a previously entered comment.

On that page, let's make a function that can get all of the data related to that comment from the database so we can display it on our page.

What does the comments table in your database look like?

Reply With Quote
  #9  
Old August 14th, 2008, 08:14 AM
mikeyskona mikeyskona is offline
Contributing User
Dev Shed Novice (500 - 999 posts)
 
Join Date: Aug 2008
Location: Plymouth UK
Posts: 964 mikeyskona User rank is First Lieutenant (10000 - 20000 Reputation Level)mikeyskona User rank is First Lieutenant (10000 - 20000 Reputation Level)mikeyskona User rank is First Lieutenant (10000 - 20000 Reputation Level)mikeyskona User rank is First Lieutenant (10000 - 20000 Reputation Level)mikeyskona User rank is First Lieutenant (10000 - 20000 Reputation Level)mikeyskona User rank is First Lieutenant (10000 - 20000 Reputation Level)mikeyskona User rank is First Lieutenant (10000 - 20000 Reputation Level)mikeyskona User rank is First Lieutenant (10000 - 20000 Reputation Level)  Folding Points: 41071 Folding Title: Beginner FolderFolding Points: 41071 Folding Title: Beginner FolderFolding Points: 41071 Folding Title: Beginner Folder
Time spent in forums: 1 Week 9 h 22 m 45 sec
Reputation Power: 150
Quote:
Originally Posted by jadi
Thanks a lot sampson for making such an effort.
The issue that you are pointing(users can edit only his comments) is also an issue that I already had in mind.

Also sorry to mention but I am still not able to explain my self.


Ok, let me take it from the top.

I have a page that enters comments(data) and another that displays it. Now I want to let users edit their own comments(data).

Now I cannot just put them into the text box because 3 values comes from drop down and one from radio button.

So if say you display EDIT button after all the comments of the current user. Now when he clicks it how can I get dropdowns, radio with their present values and allow them to edit?


Am I making sense now?


yep, Just make the form with the same Data (+ the extra data) that they can change (either in the popup, or a new page). Then make it post back to the original page on sumbit (which obviously would refresh when the new data is sent).

If you are using the popup method, you can still send the information that has to be passed through via the URL in the window.open request.. or just in the link ifyou are going to be using the same window.

Using the Popup window you can just submit back to _parent if needs be.

There are quite a few ways of doing this.. the best way is for you to describe exactly how you want to acheive the desired result (frontend wise), and we can point you in the right direction towards acheiving it

Reply With Quote
  #10  
Old August 14th, 2008, 08:19 AM
jadi's Avatar
jadi jadi is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Aug 2008
Location: New Jersey, USA
Posts: 190 jadi User rank is Corporal (100 - 500 Reputation Level)jadi User rank is Corporal (100 - 500 Reputation Level)jadi User rank is Corporal (100 - 500 Reputation Level)jadi User rank is Corporal (100 - 500 Reputation Level) 
Time spent in forums: 1 Day 7 h 24 m 28 sec
Reputation Power: 3
COMMENTS

CELLID , problem, solution, comments, username , date ,rf,

Cellid is not to be changed so we dont worry about it.
Problem comes from drop down.
solution comes from drop down.
Comments is a simple text box.
username comes from the session id.
date comes from the curdate function
and rf is a radio button of YES/NO.

Reply With Quote
  #11  
Old August 14th, 2008, 08:25 AM
jsampsonPC's Avatar
jsampsonPC jsampsonPC is offline
stick a scissor in you eye
Dev Shed Intermediate (1500 - 1999 posts)
 
Join Date: Jun 2004
Location: Pensacola, Florida
Posts: 1,572 jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level) 
Time spent in forums: 1 Week 6 Days 15 h 19 m 57 sec
Reputation Power: 434
Can you show a sample of two or three rows of content too?

Reply With Quote
  #12  
Old August 14th, 2008, 08:47 AM
jadi's Avatar
jadi jadi is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Aug 2008
Location: New Jersey, USA
Posts: 190 jadi User rank is Corporal (100 - 500 Reputation Level)jadi User rank is Corporal (100 - 500 Reputation Level)jadi User rank is Corporal (100 - 500 Reputation Level)jadi User rank is Corporal (100 - 500 Reputation Level) 
Time spent in forums: 1 Day 7 h 24 m 28 sec
Reputation Power: 3
INSERT INTO `comments` (`CELLID`, `problem`, `solution`, `comments`, `username`, `date`, `rf`) VALUES
('SI', 'Misc - Hardware related', 'Being Monitered.......', 'switch Investigating', 'pam', '2008-08-14', 'no'),
('NJ5', 'Misc RF', 'Being Monitered.......', 'set Alpha power to 41', 'gb', '2008-08-14', 'no'),
('NJ5', 'Misc - T1 / PCM', 'T1 TT out to Telco', 'VZ found no trouble upon manual testing', 'gb', '2008-08-14', 'no');

Reply With Quote
  #13  
Old August 14th, 2008, 09:03 AM
jsampsonPC's Avatar
jsampsonPC jsampsonPC is offline
stick a scissor in you eye
Dev Shed Intermediate (1500 - 1999 posts)
 
Join Date: Jun 2004
Location: Pensacola, Florida
Posts: 1,572 jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level) 
Time spent in forums: 1 Week 6 Days 15 h 19 m 57 sec
Reputation Power: 434
This structure is a little wrong, and will make things harder on you. For example, I noticed that "problem" is likely coming from a list of options, but rather than storing a number that refers to an entry, you're storing the text itself. This isn't really bad, but it requires more space, and makes lookups harder on the server. Same thing goes for usernames - those should probably be integers representing userid's in another table.

Code:
CELLID | Problem | Solution | Comments | Username | Date | rf
SI       [text]   [text]     [text]      [text]    [date]  no
NJ5      [text]   [text]     [text]      [text]    [date]  no
NJ5      [text]   [text]     [text]      [text]    [date]  no


You should make another table called "problems," and give it the following fields:
id, problem

Within your comments table, link to the id of the problem, and not the text of the problem. The same goes for users - link to their userid, and not their username itself.

Last edited by jsampsonPC : August 14th, 2008 at 09:22 AM.

Reply With Quote
  #14  
Old August 14th, 2008, 09:05 AM
jadi's Avatar
jadi jadi is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Aug 2008
Location: New Jersey, USA
Posts: 190 jadi User rank is Corporal (100 - 500 Reputation Level)jadi User rank is Corporal (100 - 500 Reputation Level)jadi User rank is Corporal (100 - 500 Reputation Level)jadi User rank is Corporal (100 - 500 Reputation Level) 
Time spent in forums: 1 Day 7 h 24 m 28 sec
Reputation Power: 3
I was having problem joining the tables. So sorry about that.

So am I having problems??? I cant do it?

Reply With Quote
  #15  
Old August 14th, 2008, 09:22 AM
jsampsonPC's Avatar
jsampsonPC jsampsonPC is offline
stick a scissor in you eye
Dev Shed Intermediate (1500 - 1999 posts)
 
Join Date: Jun 2004
Location: Pensacola, Florida
Posts: 1,572 jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)jsampsonPC User rank is Lieutenant Colonel (40000 - 50000 Reputation Level) 
Time spent in forums: 1 Week 6 Days 15 h 19 m 57 sec
Reputation Power: 434
It can still be done, but you will be happier in the long-run if you go back and update the tables :P

Is there not a unique id for each comment?

Reply With Quote
Reply

Viewing: Dev Shed ForumsProgramming LanguagesPHP Development > Edit problem


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump



 Free IT White Papers!
 
How to Present Effectively Online
This white paper offers practical and actionable advice on the key steps that any presenter should consider as they plan and execute a Webinar or online meeting.

 
Open Source Security Myths
Open Source Software (OSS) is computer software whose source code is available to the general public with relaxed or non-existent intellectual property restrictions (or arrangement such as the public domain), and is usually developed with the input of many contributors.

 
Power and Cooling Capacity Management for Data Centers
This paper describes the principles for achieving power and cooling capacity management.

 
Scalable, Fault-Tolerant NAS for Oracle - The Next Generation
For several years NAS has been evolving as a storage alternative for Oracle databases, and for good reason: NAS is quite often the simplest, most cost-effective storage approach for Oracle. Learn about the benefits that HP's approach to scalable NAS brings to Oracle environments in this comprehensive white paper.

 
Understanding Web Application Security Challenges
This white paper discusses many common threats and preventive measures for Web application security, and explains what you can do to help protect your organization.

 

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2009 by Developer Shed. All rights reserved. DS Cluster 4 hosted by Hostway
Stay green...Green IT