Welcome to Tech Support Forum home to more then 136,000 problems solved. Issues have included: Spyware, Malware, Virus Issues, Windows, Microsoft, Linux, Networking, Security, Hardware, and Gaming Getting your problem solved is as easy as:
1. Registering for a free account
2. Asking your question
3. Receiving an answer

Registered members:
* Get free support
* Communicate privately with other members (PM).
* Removal of this message
* See fewer ads.
* And much more..

 



Want to know how to post a question? click here Having problems with spyware and pop-ups? First Steps
Go Back   Tech Support Forum > Design Forum > Web Design & Programming
User Name
Password
Site Map Register Donate Rules Blogs Mark Forums Read


Web Design & Programming Discussion of web design, and server-side & client-side scripting

Reply
 
LinkBack Thread Tools
Old 06-08-2009, 08:23 PM   #1 (permalink)
Registered User
 
Join Date: Mar 2009
Posts: 19
OS: Windows XP SP3


Admin controlled, user testimonials

I did a quick two searches, one of this forum and another of the whole site and nothing came up with my keywords. So, I hope this is in the correct place.

I'll cut to the chase: I am creating a website, pretty much freelance with little high-end knowledge, for a business, and it is already in the works. I have everything that my client wants accessibility-wise (not so much design, but that is a different story) and one thing has me stumped on how to go about.

The client I am working for wants a page on their business site to be dedicated to user testimonials, or reviews, comments, what have you. My client wants a submission interface that would send the review, comment, etc. to an administrator accessible area (ideally through a login, I imagine) in which my client can select which review, comment, testimonial will be displayed on the base 'Comments' page. Preferably with check boxes for displaying or taking a review off the page. Ideally, there would be a delete check box as well.

Any suggestions? I spent about two hours researching tutorials on how to do such a thing but came up pretty much empty-handed (save zen cart, of which I did not quite understand the concept).

EDIT: typo
Anon2 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Important Information
Join the #1 Tech Support Forum Today - It's Totally Free!

TechSupportForum.com is a leading support website for your computer needs. We offer free, friendly and personalized computer support. Why pay to have your computer fixed when you can do it for free.

Join TechSupportforum.com Today - Click Here

Old 06-08-2009, 09:34 PM   #2 (permalink)
Moderator/Fedora Amb.
 
wmorri's Avatar
 
Join Date: May 2008
Location: /pm/etc
Posts: 2,821
OS: Window 7/Fedora 10

My System

Send a message via AIM to wmorri
Re: Admin controlled, user testimonials

Hi,

Well for writing a testimonial that isn't hard, just set up a feedback form, and the have it go to another page that is only accessible through a login.

Cheers!
__________________


Linux Forever!

wmorri is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 06-09-2009, 07:38 AM   #3 (permalink)
Design Team Member
 
jamiemac2005's Avatar
 
Join Date: Jul 2007
Location: Coventry, UK
Posts: 1,880
OS: Vista, various linux distros


Re: Admin controlled, user testimonials

They way i'd go about it is having a "testemonials" table in your db, with a "status" column, with a numeric code to represent whether the testemonial has been approved(0="pending", 1="approved", 2="declined" or something, you could even just delete the declined testemonials). Since you haven't given a language i can't knock out any code...

Then on your testomonials page have a query that selects all the testemonials which have a status of "1", and echos them on the page, then in your admin side, a form which lists the testemonials with a status of "0", and gives a checkbox or similar to approve/disapprove a testemonial...

It's easily done, it just takes a bit of head work and time.

Cheers,
Jamey
__________________

Myspace
jamiemac2005 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 06-09-2009, 01:34 PM   #4 (permalink)
Registered User
 
Join Date: Mar 2009
Posts: 19
OS: Windows XP SP3


Re: Admin controlled, user testimonials

Quote:
Originally Posted by jamiemac2005 View Post
They way i'd go about it is having a "testemonials" table in your db, with a "status" column, with a numeric code to represent whether the testemonial has been approved(0="pending", 1="approved", 2="declined" or something, you could even just delete the declined testemonials).
Thanks, that number system seems like a sound way work it out.

Quote:
Originally Posted by jamiemac2005 View Post
Since you haven't given a language i can't knock out any code...
As probably suspected, I'm simply using HTML and CSS. Haven't gotten in to much other coding.. yet, anyway.

The primary two problems for me are programming the testimonial submission to send (or keep) the testimonial info on an authorization-required page, and then getting the approved testimonials to display on the 'View User Testimonials' page.

I have plenty of time, and for now I am still working on a few of the other pages but (I imagine wisely so,) I figured I'd best figure some of this problem out first. Any help is appreciated and thank you both for your time.
Anon2 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 06-09-2009, 01:47 PM   #5 (permalink)
Design Team Member
 
jamiemac2005's Avatar
 
Join Date: Jul 2007
Location: Coventry, UK
Posts: 1,880
OS: Vista, various linux distros


Re: Admin controlled, user testimonials

You'll need a server-side language(I suggest PHP) to complete this, and a database to go with... Once you've dabbled there it's not too hard to accomplish.

Cheers,
Jamey
__________________

Myspace
jamiemac2005 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 06-09-2009, 02:05 PM   #6 (permalink)
Registered User
 
Join Date: Mar 2009
Posts: 19
OS: Windows XP SP3


Re: Admin controlled, user testimonials

Quote:
Originally Posted by jamiemac2005 View Post
You'll need a server-side language(I suggest PHP) to complete this, and a database to go with... Once you've dabbled there it's not too hard to accomplish.

Cheers,
Jamey
I shall experiment with PHP for a bit and see what I can do. Best I can hope for is once I get to know it a tad, I will think of a way to form the basis of that requirement in the site.

Thanks again, I appreciate the fast response.
Anon2 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 06-09-2009, 02:08 PM   #7 (permalink)
Design Team Member
 
jamiemac2005's Avatar
 
Join Date: Jul 2007
Location: Coventry, UK
Posts: 1,880
OS: Vista, various linux distros


Re: Admin controlled, user testimonials

That's k, glad to be of help.

Cheers,
Jamey
__________________

Myspace
jamiemac2005 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Reply


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 Off
Pingbacks are Off
Refbacks are Off




All times are GMT -7. The time now is 08:17 AM.



Copyright 2001 - 2009, Tech Support Forum
Home Tips Plus | Outdoor Basecamp | Automotive Support Forum

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85