-
Review my online store
To stop print screen of images.
-
Review my online store
BUMP! I need some feedback please guys.
-
Review my online store
Hey guys. I need some feedback on my website. It is kinda like an online store where there is a product catalog and users add products to cart, except there is no payment gateway so when the user sends the form it is stored in database instead of leading to paypal, etc. Here is the link - http://neoshop.xtreemhost.com/ It is using free hosting right now as the site is still not in full implementation yet. I will need your feedback and this will affect the site's implementation. Please try out the features, eg forms, buttons, links, components etc. Note that there is no validation on the checkout form, and only on the contact form. Try temporary mail services like 10minutemail and see if some of these features work. To help with your review, you can use this design brief to compare with the specifications set by the client. Also, when you write your review, please write your name and occupation (optional) underneath. This is for use for my school project. I need to collect the feedback and fill it in a survery summary spreadsheet. You can also access this survey here Thank you in advance.
-
Evaluate my Design
It's a mockup. This is a Tech project so we have to make a mockup as a model. @ J.P The design brief is not final. The project requires ongoing refinement of the design brief. The project is to develop a concept and implement a final solution. One of the tasks is a to construct a final brief that will provide specifications for student, client, wider community and evaluates the final solution. The refinement of the brief is done by the student doing some research, continuous client consultation (cannot be done in one go), developing understanding of the environment in which the practice is undertaken and feedback from the wider community. From this, the student will develop an understanding of the need of the final solution to be fit for purpose in its broadest sense to all stakeholders (hence a final design brief will be developed). Also the project is at an HS level.
-
Evaluate my Design
Hello I am a student that needs some help with a project. We are assigned to create a website at school, and part of this project is to consult stakeholders and the wider community about how my concept design fits the purpose outlined in my own design brief. I have created a wireframe plan of the website. Now I need some feedback from the wider community. Here I have a survey that may take 8-10 mins to fill. Please take some time to judge the wireframe and add some useful response. The links to the concept design wireframe and the brief are at the top of the survey. Final Concept Design: Evaluation Thanks in advance.
-
(PHP) Fetch from DB then print as list
Maybe I'm being dumb here but I can't find what I'm doing wrong. I have a table of categories in my database. ID-------Name--------Parent 20-------Apples------ 1 21-------Bananas-----2 22-------Oranges-----3 24-------Peaches-----1 25-------Tomato----- 1 I want to fetch all records where parent equals to a certain value (eg Parent = 1) and then print this as unordered list. Right now I have: function getChild() { //Take value from url $catId = (int)$_GET['c']; //Query to DB $sql = "SELECT cat_id, cat_name FROM tbl_category WHERE cat_parent_id=$catId"; $result = dbQuery($sql); $childcat = array(); while ($row = dbFetchAssoc($result)) { $childcat[] = $row; } return $childcat; } So this takes the id and name of a category. The id is to be used later for URL purposes. <?php $child = getChild(); foreach ($child as $childcat) { $cat_id = $childcat['cat_id']; $cat_name = $childcat['cat_name']; $url = $_SERVER['PHP_SELF'] . "?c=$cat_id"; } //Print array as list. echo "\n<ul>\n" ; foreach($child as $childcat){ echo "<li><a href=\"" . $_SERVER['PHP_SELF'] . "?c=$cat_id" . "\">$cat_name</a></li>\n"; } echo "</ul>" ; ?> All this does is print the same record (it chooses the last one) over a number of times. It does get the number of records to be fetched right. So suppose it was to fetch all records with a parent of 1 (3 records) it will show the record Tomato in a list three times. How can I fix this? Thanks in advance.
-
Lookup in same table with PHP
I want to create a breadcrumb navigation on my pages, but I have very little knowledge of PHP and MySQL. Here is my situation. I have a table of categories, with a row named 'cat_parent_id' that tells ID of the parent category (there are first level AND second level categories). If the category has no parent ID, it's 'cat_parent_id' is set to 0, meaning that it's a first level category. So, I would like some help on how to code the PHP for my breadcrumb navigation. I have a page named index.php and whenever I navigate to a category page, the URL becomes 'index.php?c=18' (for category with an ID of 18). I want to use this to create an if statement, that checks if category has parent_id of 0 to only display: Home >> Category_Name for my breadcrumbs. If the parent_id is greater than 0, then lookup the name of the category with the ID in the database, then append the name of the current category, eg: Home >> Parent_Category_Name >> Current_Category_Name Please some help guys
-
New website: HTML5 or XHTML
I have a school project where we have to make a website for a client with a real-life issue (eg a business, organisation, etc.). And one of the requirements is to use a variety of resources like questionnaires, surveys, telephone interviews, emails, etc. for researching. Right now I'm at the stage where I'm starting to develop my final solution. I need to decide whether to stick with the old, stable XHTML or go with the new, hyped up HTML5 (leaning towards HTML5). I need your help guys. Here is my survey: Software Usage at Work (Survey) Please fill in this survey.