Jump to content

eduardo_consolacion

Members
  • Posts

    11
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

eduardo_consolacion's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. how would you do this one... I have a page called categories.php it has the following: Categories Books(clickables) Magazines (clickables ) Toys(clickables) School Supplies (clickables) when i click the books it iwll go to another page called books.php in it it has all the different kinds of books: Books picture of the book picture of the book1 Name: Horror Name:Sci-fi (clickables) Price: $30 Price: $3 picture of the book picture of the book1 Garden Music Price: $53 Price: $301 When click on one of the books like "Horror" it will display on another page called horror.php it will have a : A Book Picture Name of the Book: Harry Potter Description: Children's Book Price: $350 corresponding on the price that was placed on the page. Then i will have a view_purchased.php having: qty item name price description total 2 harry potter $350 Children's book $700 questions: 1)how would you pass the value to the next page, having retaining the value that was placed on the page? 2)Either you can click the name or picture book picture of the book(clickables) picture of the book1(clickables) Name: Horror (clickables) Name:Sci-fi (clickables) Price: $30 Price: $3 and may be placed tp another page so it can be viewed. A Book Picture Name of the Book: Harry Potter Description: Children's Book Price: $350 how would you do this? 3) how would you pass the necessary information like this: qty item name price description total 2 harry potter $350 Children's book $700 and can calcualte the price using the PHP LAnGUAGE? Please do help me with this one?
  2. how can you do this: if i have a page called edit.php having: Edit Appliances Appliances: <select><option>Computer</option></select> // this is the selection box not the code itself <select><option>Hard Disk</option></select> <select><option>Mouse</option></select> this is the only one that can be seen for the first time. As, i want this one to be like almost "a submit button" where once i will click the names inside the option box, it will direct me to the same page having all the blank information to be filled up by the administrator like this one: Appliances: Computer // assuming this turned gray and cannot be touched or edit anymore Serial Number: <input type=text> //this will be type by the administrator to edit the necessary information that was in the database Model Number: <input type=text> // same as this one will be inputted Type: <input type=text> after the admin type the information it should look like this one: Appliances: Computer Serial Number: 123-456 Model Number: 123-456 Type: abc-def and so on question: 1) could this one be done? if so please help me otherwise tell me still 2) should i use a flash or any sort of multimedia to do this or just pure html code and php alone? 3) or should i just do this edit it like this one : if ever i have a bulletin posted in the page of edit1.php ID Name Description Quanity Price Choice 1 abc abcdefg 45 $76.89 Add Edit Delete 2 wxy opabcdefg 54 $176.89 Add Edit Delete 3 jki rtabcdefg 90 $6.89 Add Edit Delete if i click the Edit it will redirect to another page having all the information like this one The Name, Description, Quanity and Price, question: 1)should i placed these on a text box where i can edit it or 2) is there other way for me to do the editing part? if you understood what i meant and my diagram please answer me in anyway you can. otherwise so i can get just an idea how to do it. 3) if there is a website for this please help me go to ; if there is its okay, if not, what can i do ? 4) or is there a code how to do this? ID Name Description Quanity Price 1 <input type=text> <input type=text> <input type=text> <input type=text> 2 <input type=text> <input type=text> <input type=text> <input type=text> 3 <input type=text> <input type=text> <input type=text> <input type=text> ID Name Description Quanity Price 1 abc abcdefg 45 $76.89 2 wxy opabcdefg 54 $176.89 3 jki rtabcdefg 90 $6.89 i do hope that both of my questions will be answered hopefully i will thank you somehow for you guys have given me some ideas how to do it. thanks a lot. this site is a very nice site where you can help people who are IN NEED? thank you again and god bless to you all. take care bye....
  3. how can you do this: if i have a page called edit.php having: Edit Appliances Appliances: <select><option>Computer</option></select> // this is the selection box not the code itself <select><option>Hard Disk</option></select> <select><option>Mouse</option></select> this is the only one that can be seen for the first time. As, i want this one to be like almost "a submit button" where once i will click the names inside the option box, it will direct me to the same page having all the blank information to be filled up by the administrator like this one: Appliances: Computer // assuming this turned gray and cannot be touched or edit anymore Serial Number: <input type=text> //this will be type by the administrator to edit the necessary information that was in the database Model Number: <input type=text> // same as this one will be inputted Type: <input type=text> after the admin type the information it should look like this one: Appliances: Computer Serial Number: 123-456 Model Number: 123-456 question: 1) could this one be done? if so please help me otherwise tell me still 2) should i use a flash or any sort of multimedia to do this or just pure html code and php alone? Type: abc-def and so on
  4. i've created a posted board like this in a certain page called "board.php": ID TO FROM SUBJECT DESCRIPTION CHOICES TO MAKE 1 hasinc@contactus.com mail@mail.com product sold is broken the chair that i got is broken.... ADD EDIT DELETE 2 hasinc@contactus.com for_mail@mail.com about the item computer screen is damage.... ADD EDIT DELETE 3 4 The ADD, EDIT, DELETE is a clickable using an <a href ="add.php ">, <a href ="edit.php ">. Now my question are as follow: 1) how would you delete the entire row if you click the DELETE in row number 1? 2) would you use <a href ="delete.php "> to delete it or other code to use it? 3) I want also to redirect the page to itself when the process is done, how would you do that? 4) I want to make sure that both in the PHP DATABASE will be DELETED as the board.php will be change into something like this: ID TO FROM SUBJECT DESCRIPTION CHOICES TO MAKE 2 hasinc@contactus.com for_mail@mail.com about the item computer screen is damage.... ADD EDIT DELETE 3 4 I do hope that you can help?
  5. how would you create a date and time format in your page? how would you make this date and time not to change back to the previous time when you click the "BACK BUTTON" ? Meaning if you have a time like this: 13 of August, 2007 08:11 PM in one of your pages then when you continued it to the "next page" you will have assuming that time changed to this, 13 of August, 2007 08:12 PM and i forgot to do something in the previous page, the date and time format returns to the old time stating like this: 13 of August, 2007 08:11 PM when you could have: 13 of August, 2007 08:12 PM the updated time. how would you to that not having the old time or previous time in all of your web pages withour returning to the old time? I do hope you undesrtood what i meant? thank you
  6. if you read the "PASS MY VALUE PART 2" the continuation of the question is in the "ADDITIONAL QUESTION " IT JUST HAPPEN THAT YOU are the one who opened it and didn't quite get what i meant. please do refer to the "PASS MY VALUE PART 2" and read the "ADITIONAL QUESTION" for additional information. About the comment, i was thinking to create a comment page for the customer side and fill the necessary information asked like, "TO: " with corresponding text input box and "SUBJECT: " with corresponding text input box and the "TEXTAREA: " where the customer writes the comments. then once click the "submit button", it will be passed to the administrator side, having a page for a comment, for the admin to read what the customer wants to ask. how would you do that to without letting the customer page go directly to the admin's comment page and giving the comments to the administrator. meaning i will only pass the words that for example, i stated on the "text area box" to be read by the admin in the comment page alone. is there a code for it to do that? on the other hand, i need to know how admin would reply to the customer without going directly to its page, do i need to create ah, lets say, a YAHOO E-MAIL page or similar to it, in order for the customer to retieve what he or she wants? or is it it depends on my project? or i will just assumed that the customer has an account already and asssume that the admin had passed the reply even though you can only see it on the database? would this be a nice practice to do this? these are the questions i want to know? please do bare with me for not explaining it well for my english is not well written and my thoughts are a bit odf scrambled not knowing which question to asked first , FORGIVE ME. thanks again and hope this time you will understand what i mean.....
  7. almost this way, on this page, how would you make a web page where you will put a comment in one of your page in your site and once sent by the customer, it would allow your administrator to read it and reply to the responant, i think that is the term i want to use, what he or she wants to hear about the question he or she asked. almost the same way as this, would you redirect that page that has a comment to itself and may pass the question to the administrator side in order for the admin to read and reply what the customer wants to know, not showing it was or have been sent how would you make such a thing? and how would you know, if the reply of the administrator has been passed or has given to the customer to read the answered question that the customer wants to know. Do i need to create another web page for the customer LIKE an" e-mail account" web page to one of a given site like Netscape, MSN, YAHOO, AMAZON etc... in order to check if the e-mail reply by the admin has been sent/passed or if email did not received by the customer at all if you know what code to use, please do help me to do such a thing in order for me to know how to make it this in my webpaget that i am doing, if the question is to vague just asked me again what i need to add to make this question to be clear and vice versa. thank you a lot
  8. I'm sorry to to say this, but the description for the VIEWING PART IS NOT CLEAR so i decided to add up this additional question on the posted bullentin in the viewing part, it has the When the customer tries to viewa ll the item selected, in the "View_Description.php" it will have this things: BOOK Picture, Quanitity, Item, Price, Total wil be shown I know that i am giving you or asking you to much but at least the answer you gave me is also a reference for me on how to do this kind of purchasing an item...Please forgive me for asking TOO MUCH, but i am very grateful that you've answered some of the question that i posted. YOU are a GREAT HELP thank you again for the last time....
  9. Dear Sir/Madam: Hello, again. I was wondering if you could help me solve this problem that I am having. If you remember the last topic that I asked you, I've asked how to use the "book" icon to be passed on the other pages as it will appear on the next page with its corresponding prices, and description. Now,i want it to be in a different style or idea. What if I have a category in my web page and in the categories you have ,let's say, about 6 of them: having this example BOOK -> a HORROR CATEGORY, MAGAZINE, MUSIC, COMPUTER, GARDENING, AND PC And in each categories, you decided to put, only for the meantime, 10 items on it EXAMPLE: PC-> MONITOR, KEYBOARD, MOUSE, SPEAKER, WEB CAM, CPU, PRINTER, TRANSFORMER (VOLTAGE FOR 120 TO 240 USAGE ), DVD. THEN you tried to pick "one sub categories" on 1 pageto show all the details about that item(S) SELECTED EXAMPLE : PC-> MONITOR-> THIS IS WILL PASS TO ANOTHER PAGE CALLED "PURCHASED_DESCRIPTION.PHP" -> where it has the price, the name, the description and so on. Once selected, it will pass to another page to VIEW all the purchased items. How would you do you that to show all the items that the customer had bought? And is there a way that instead of creating a new "PURCHASED_DESCRIPTION" for each category so i can or the customer can display the items selected. OR Could it be possible to use or placed it ONLY IN ONE "PURCHASED _DESCRIPTION" and can manipulate it from a different sub categories when the customer will clicked a different action or item selected? EXAMPLE: PC -> MONITOR -> PURCHASED_DESCRIPTION->VIEW_DESCRIPTION PC -> KEYBOARD -> PURCHASED_DESCRIPTION1->VIEW_DESCRIPTION1 PC -> MOUSE -> PURCHASED_DESCRIPTION2->VIEW_DESCRIPTION2 INSTEAD WHAT I WANT IS : PC -> KEYBOARD -> PURCHASED_DESCRIPTION->VIEW_DESCRIPTION ^ | PC - > KEYBOARD - > ^ | PC - > MOUSE - > by means of this illustration that i made i do hope you code understand what i meant. Once again, i would say thank you in advance, for helping me solve the last problem though this time i've enhanced it a bit This question is use for "PHP LANGUAGE......"
  10. Good Day, I just recieved and read the response today you gave me. I tried doing it first as a trial, when suddenly it outputs what i wanted. I couldn't ask for more. By means of gratitude, i would like to say, "Thank you sir/madam for giving me the answer that i was looking for. And, thank you as well for the idea on how to solve this problem of mine that takes only just an e-mail of a second to do. I really appreciate all the things and effort that you have done and that you have given me. What else can i say, but to say "Thank you and for helping me." Take care and have a wonderful day! Bye"
  11. Hello my name eduardo consolacion, i just want to ask some of your help to answer the question that i am longing to get it. Using PHP, I want to know how to pass a certain value or anything like it when you try to click a "picture of a book" or its "name" to be pass on another web page that will show the "book picture", the "price of the book" and the "description" of it? i do hope that you could help me with this? i would thank you in advance for everything. thank you again and have a pleasant day ???
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.