Jump to content

Ninjakreborn

Members
  • Posts

    3,922
  • Joined

  • Last visited

Everything posted by Ninjakreborn

  1. I have something worked out with it I might, I try to avoid using javascript to deal with aspects of the design, because I have had issues with it, when people didn't have it enabled.
  2. I will be more careful then, that's why I wanted to ask here, before I dug my teeth into something, I will do it in my spare time, should I price at around $20,000 or higher
  3. Sounds good. I like the way you work, I will set this up that way then, I appreciate it, a different approach.
  4. I want to find out about something, if I was to try and build this. [a href=\"http://www.basecamphq.com/\" target=\"_blank\"]http://www.basecamphq.com/[/a] something on my own, how long do you think it would take to build, a client is wanting me to create something like this in php, and I like the idea, I am just trying to get a rough quote, any advice on pricing this, or how long it would take, for instance, I could program the forum functions, or use bits and pieces of a few 3rd party forum scripts, I want the php code I do on this to be real secure, and have good performance, so it will take a little longer to check over my code, any advice.
  5. I have an idea. How about this, is this possible. I have ok, I think I can time scripts. So I can do this, for instance, I have it send the information to a page, then I validate it, and send a mail script right then with a url to that page. He clicks the url and goes to the page(I will have something in my script to have php wait until he gets to the site), when he gets to that page, then my script will run an if else statement, he has 2 choices after he looks at it, accept/decline. If he accepts it runs a section of my script and then emails the confirmation the person letting them know, emails the confirmation to my client letting him know it worked, and then it adds the information into the database. If he declines the in just runs a section of the script telling him, the information has been declined, and then kills the script, without doing anything further, I would have to use session or something, any advice, do you think this could work.
  6. I don't know what middle ware is, it's simply a place where people can upload stuff, that is funny, so other people can view it later when they call the database. I just want to make sure and see if there is a way for me to scan the files for viruses, at some point or another to protect end users from getting viruses when they look at, or download the files from the site.
  7. hmm, I will give that a try, is there also a way, to have it not add it at all unless he approves, or is that impossible, if it is then I am going to try the first way. There's limited database space on his server, the company he owns has like 2000 sites all on one massive server, and he has each site in a different folder, and a different url pointing to each folder, so he wants to avoid putting anything that is unnessecary in the database, not saying the database can't handle infinite intries, but He wants to keep only the stuff in the database, that he approves of, completely.
  8. There won't be a footer, but that helps, I will keep that in mind for the future. What I mean was for instance, I have say there are 4 sections to my website, the header, and 3 for the body. It's a standard 3 column layout. I want to have the 3 columns stretch all the way from left to write, that is pretty easy, I think, but I want all 3 columns, to go from the top, Where I have them below the header, ALL the way down to the bottom of the screen. Without having to set it in pixels I set the widths for all 3 to 33%, and the height to 100%, and it didn't work.
  9. This is primarily about php, because that is what I need to do this. I need to do the regular, get someone to submit a form, it goes into a database after validation. But I need to add an extra feature and I don't know how, I know how to set up a control panel to let him, add and delete data. but what I don't understand now pretty much is I need to get it to where when someone submits the information(it has 3 text fields, and an attachment), the attachment, could be an email video, or anything, I need to be able to take the whole submission, text fields, attachment and everything, and somehow send an email to the client I have to look over and approve, and then if he approves, then accept, and THEN it goes in the database, if he declines, then it discards it
  10. Can I get something on my server to scan the viruses before database entry, and reject them incase, so there is no chance for a end user, getting something malicious, that would not be cool, if someone started getting viruses from a site I built, that would be embarrasing, or does mysql have any sort of functions to pick up on viruses(I doubt,) but it's worth asking.
  11. Need help, I am in the middle of a lot of projects, I am having a lot of fun, but I encountered a small problem. I have set a header, stretched it wide 100%, put a logo picture(the name of the site), and a picture of what he wanted. Ok now, I was trying to, I can't show a url because it's not live. Now what I want to do is have a 3 column layout, this is his master homepage, it will have a bunch of stuff linked to 3 drawers, with a bunch of mouse events to do some popping in and out. What i want is to have the header, all the way across the top, the two images are set and everything, it's done, now I have 3 columns, left, middle, right, each with a different background color, background image, and pictures. I need them to equally take up a section of the screen, I tried width:33% for all 3 of them, and then I tried setting height:100% for all 3 of them but it didn't work, I need each section to take up an equal part of the page, and I need all 3 to extend to the bottom of the page, I don't want to take the chance of setting it in pixels, because if I do, then if he uses that as a template later, with more content, and a scroll bar appears on the side, then the background will cut out, early. I need it to always go to the bottom of the screen, and if you scroll down, then it will either stretch with it or whatever, here is what i Have, you can copy this into a file and preview in browser, you won't see the pics, but you will get an idea of what I am wanting to do. [code] body { padding:0px; margin:0px; } #header { width:100%; height:120px; background-color:#000000; background-image:url(indexPgImagesEtc/ShelfMolding.jpg); background-position:bottom; background-repeat:no-repeat; } #logo { margin-left:300px; margin-top:50px; } #left { height:auto; width:33%; background-color:#000000; } #middle { height:auto; width:33%; background-color:#7B7B7B; } #right { height:auto; width:33%; background-color:#FFFFFF } [/code] [code] <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <link rel="stylesheet" type="text/css" href="huttonio.css" /> <title>Huttonio Brooks: Furniture, Photographic Works, Sculpture and Fine Art Works, etc </title> </head> <body> <div id="header"> <img src="indexPgImagesEtc/HBlogoSm.jpg" alt="Name Logo" id="logo" /> </div> <div id="left"></div> <div id="middle"></div> <div id="right"></div> </body> </html> [/code] Any advice or guidance would be greatly appreciated.
  12. Is it possible for a Mysql, MsAccess, or other database server to get some sort of virus. For instance, say you have a virus, on a document, or on a zip file, or any other type of file, and you download it to your computer, your computer becomes affective. If you have a form, that accepts an attachment, and that attachment is either getting downloaded to the server, or to the mysql database, could either the server, or the database get a virus from the file, or more of, does the virus stay within the file, and then every time someone browsing the site calls, it for instance, I am working on a site, people submit stuff to the database, files actually, and other people can view those files, if someone sends a file in with a virus I need to find out 1. Can it affect the database 2. Can it affect the server 3. Does it stay in the file and make every person who downloads it get infected. 4. If it does happen like that, is there any way for me to virus scan before it goes into the database, virus scan the database, or virus scan the server if it's on the server, or do a scan before the person downloads, thanks for the advice, I appreciate it.
  13. Because I can't type out a thousand lines of code to do it, that is what made me not do it in the first place.
  14. Sounds good when I start knocking out some sections of the site, I will keep all this in mind and use them to do changes.
  15. [b]SOLVED-Problem completely solved thanks for all the help.[/b]I am building a small database with javascript, for recalling information in a mini-program, what I am trying to do, well I don't want to go into all that, What I want to ask is there a way, because I have to put in all the information, is there a way for me to paste information into a document, then with javascript someone automatically turn all the bits of information into an array. because I am creating about 7 arrays, and wanting them all the be associative arrays pointing to the same keys, for instance Key 1-has 10 different arrays hooked to it and if I call that 1 then all the information comes for instance Array 1 [1] baboon [2]cat array 2 [1] hairy [2] 4 legs array 3 [1]stupid [2]2 legs It's not what an array looks like but you get the point, if that 1 is called then it pulls hte information saying baboon, hairy, and stupid. If I was to use the variable baboon instead of the key selector it still calls all the information, I am wanting to be able to change a lot of information into an array without having to type it all out, then I can just pretty it up, and put in the information and create another array, because javascript automatically indexes them at 0 and above, I will already have the key indexes set, and the arrays will still be callable by those keys. Any advice would be appreciated thanks.
  16. Hmm thanks I appreciate it, I am going to go play now with that and my design, I appreciate the help, thanks.
  17. alright I will look through that and get to work. Thanks for the inspiration and advice.
  18. If I do that is there a way for me to pass the information from java script to php for emailing.
  19. I am trying to write up my own script now, on my site, I have a seperate inbox set up for it, I am wanting to write a script to detect a browser, ip number, operating system, what set of functions should I use from php or what terms should I search for to get a pretty good list of what I can pull from the power of php that involves detection. because when I write the script I am wanting to write it to where it emails me to that box everytime someone visits that site, and I want it to email me there ip address, browser, whether they have javascript java and cookies on, and some other stuff, and then I can save the data by there ip, so I know how many time each person with each ip comes, and as well I will know what sites they visit as I get an email everytime they open up a new page, so I can follow them in real time, it would be interesting. Thanks. The question was by the way in case if it's confusing [!--quoteo--][div class=\'quotetop\']QUOTE[/div][div class=\'quotemain\'][!--quotec--] what set of functions should I use from php, or what terms should I search for to get a pretty good list of what I can pull from the power of php that involves "detection", [/quote]
  20. Or can't I just download them, since there open source, and play with there php programming until I situate it to where they work with register globals on, it shouldn't take long to change all the variable with the proper $_POST, $_GET and whatever else is needed.
  21. Experience is what it boils down to. I listed the years of experience i Had in each set for instance php 2 years, I played with php, and now I know how to do it, it takes time, As far as hard core experience building websites, I just started it takes time, I understand the negatives to my site, but I am not willing to rebuild the whole thing again. I am however willing, and going to, redo the design a lot, I am going to revamp the whole thing, using my css files, probably even totally switch out files, and do some stuff with the image later, but first I want to build a few sites, get them in my portfolio, get the experience on good design, and layout. THEN when I have what is necessary to continue I am going to redo the setup entirely, the ethics page, and all those other pages, Those are subject to opinion, but I am aware that the site needs a lot of work, what is confusing me is a lot of people said they like it other's don't, I am trying to get the experience where I Can start splitting it down the middle, making it look nice for everyone. I am moving in that direction, as you see me doing sites for clients and posting them on php freaks, tehn you will see each and every website get better and better, after I have knocked out 4-5 I will redo my site, and make it look better, then gain some more experience, and learn what I know, and do more and more with the design until I have the look and feel that everyone will say that it looks good, adn that I feel good about, I appreciate teh advice, I bookmart these posts and I refer to them when I have free time and start doing minor alterations here and tehre, but when I really implement all of this at once, and do some work will be after I learn better color schemes, what matches what doesn't, what works what doesn't what fonts to use and where, what layouts are best, and then learn how to do liquid design, it takes time, working with websites I have studied for years, building them it has been nothing but building my own site 3-4 times, and working with a few clients recently, I will get better and better and better.
  22. To me graphic design is the spawn of the illigitimate son of satan. How do I kill the image size.
  23. When I finish the final cut and add in all the pages then I will finish putting in the shopping cart, then I will work on some of those suggestions and start cleaning up some of that stuff.
  24. Then was a long time ago and just the homepage, now it's the entire website, that is fully complete, with all content and everything.
  25. I don't know about my site, I will do some work with it I did get a lot of good remarks about it however. Thanks for the advice any more, I can't change the font unfortunately, clients orders. Header was hers.
×
×
  • 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.