Jump to content

businessman332211@hotmail.com

Members
  • Posts

    304
  • Joined

  • Last visited

Everything posted by businessman332211@hotmail.com

  1. I figured it out, when I happened upon another post, now when I want something centered, I just throw in a div tag around it and throw on text-align:center. and it worked perfectly.
  2. What did you mean by that, I asked a question up there, and was waiting for help, if someone knew.
  3. I don't know how, all I see up there is code, and quote, I just picked code, I should have double checked sorry about that.
  4. I will save this for later, I don't think there has ever been a deeper, more well put explanation of classes, anywhere, and when I move deeper into classes this is a full tutorial on the subject.
  5. SOLVED-This problem has been completely solved thanks for the help.I need help figuring out 2 things, here is my coding for the html, css, follow by link to the site, and what I am trying to do I can't figure out. <!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="funnyemails.css" /><meta name="Description" content="If you have a funny email, feel free to put it into our database, to send to all the people signed up to recieve funny emails" /><meta name="Keywords" content="funny, emails, email, fowards, joke, video, song, poem, picture, yellow pages, services" /><meta name="author" content="A service of Yellow Pages Online" /><title>Funny Email Forwards</title></head><body><div id="header"><img src="images/logo.gif" /><br /><p id="headertext">The web's directory of funny Email forwards<br /><a href="http://www.yellowpagesservices.com" id="headerbelow" title="The Yellow Pages Services" target="_blank"><img src="images/ypol.gif" /></a></p></div><div id="containleftright"><div id="leftdiv"><h3>Add Something Funny:</h3><form name="submitinformation" id="submitinformation" action="post"><label for="type">What Type of Funny is it:</label><select tabindex="1"name="type" id="type"><option>Video</option><option>Picture</option><option selected="selected">Joke</option><option>Song</option><option>Poem</option><option>Story</option></select><br /><label for="name">Name the Funny:</label><input tabindex="2" name="name" id="name" type="text" maxlength="80" /><br /><label for="keywords"><a href="keywords.htm">Keywords:</a></label><input tabindex="3" name="keywords" id="keywords" type="text" maxlength="80" /><br /><label for="file">Upload your file here:</label><input tabindex="4" name="file" id="file" type="file" /><br /><input tabindex="5" name="submit" id="submit" type="submit" value="Do It!" /></form></div><div id="middlediv"><p>OR</p></div><div id="rightdiv"><h3>Search For Something Funny:</h3><form name="search" id="search"><label for="searchfield">What would you like to search for?</label><input tabindex="6" name="searchfield" id="searchfield" type="text" size="33" maxlength="80" /><br /><input tabindex="7" name="search" id="search" type="submit" value="Do It!" /></form></div></div><div id="wrapbottom"><h3 id="directory">Directory of Listings:</h3><div id="upperleft"><h3 id="specialheader1">VIDEOS</h3><ul><li>Link Number one will go here</li><li>Link Number two will go here</li><li>Link Number three will go here</li></ul></div><div id="uppermid"><h3 id="specialheader2">PICTURES</h3><ul><li>Link Number one will go here</li><li>Link Number two will go here</li><li>Link Number three will go here</li></ul></div><div id="upperright"><h3 id="specialheader3">JOKES</h3><ul><li>Link Number one will go here</li><li>Link Number two will go here</li><li>Link Number three will go here</li></ul></div><div id="lowerleft"><h3 id="specialheader1">SONG</h3><ul><li>Link Number one will go here</li><li>Link Number two will go here</li><li>Link Number three will go here</li></ul></div><div id="lowermid"><h3 id="specialheader2">POEM</h3><ul><li>Link Number one will go here</li><li>Link Number two will go here</li><li>Link Number three will go here</li></ul></div><div id="lowerright"><h3 id="specialheader3">STORY</h3><ul><li>Link Number one will go here</li><li>Link Number two will go here</li><li>Link Number three will go here</li></ul></div></div><div id="copyright"><ul id="bottomnav"><li><a href="about.htm" tabindex="8" title="The About Page">About!</a></li><li><a href="signup.php" tabindex="9" title="Sign up for the newsletter">Sign Up!</a></li><li><a href="contactus.php" tabindex="10" title="Contact Us">Contact Us!</a></li></ul><p>copyright 2000-2006 funnyemailfowards.com a service of yellowpages online. All rights reserved.</p></div></body></html> body /* This part styles the body, and prepares it for the content */{margin-left:0px;margin-top:0px;margin-right:0px;margin-bottom:0px;font-family:Arial, Helvetica, sans-serif; /*this sets the font type*/font-size:15px; /*This sets the general setup of the text on the site*/}h3{font-weight:bold;text-decoration:underline;}img /* this removes borders around linked images */{border:none;}/*Everything in this section below here controls the form field boxes, this allows them to all be spaces properly and make them all look even from the form names */#type{margin-left:50px;}#name{margin-left:100px;}#keywords{margin-left:142px;}#file{margin-left:75px;}/* End working with form fields *//* Below starts working with the header, situating the text, and the images for the header, and getting it all aligned and set up properly */#header{padding-left:10px;padding-top:10px;}#headertext{padding-left:15px;text-indent:0px;margin-top:0px;margin-bottom:0px;padding-top:0px;padding-bottom:0px;font-weight:bold;}#headerbelow{padding-left:20px;}/* End header modification *//*Everything in the following sections lays the foundation for the main body set up. What happens here is I set the 3 main sections in the middle, below the header. I wrapped them in something, and put them all in a container, and working with all 3 I set them up to style correctly, and made it easier to make any types of modifications on any of the 3 elements in the containment div */#containleftright{padding:0px;width:900px;margin-top:20px;margin-left:8px;}#leftdiv{float:left;margin-right:4px;}#middlediv{font-weight:bold;float:left;margin-right:80px;margin-top:30px;}#rightdiv{float:left;margin-top:4px;}/*end structuring main sections */\/* everything in this section is going to set up the way the stuff looks at the bottom, and how it is all organized. This whole part may seem confusing, what it does to wrap the entire section at the bottom in 1 div, then it has 6 different sections for new divs, I made it this way so someone could very easily add in more rows if necessary with only having to change around a few tag names, and working a little bit adding some to the css. This way also allows it to wrap around as it minimizes, it just adds more rows for people with smaller browser windows. */#wrapbottom{width:900px;clear:both;}#upperleft{float:left;}#uppermid{float:left;}#upperright{float:left;}#lowerleft{float:left;}#lowermid{float:left;}#lowerright{float:left;}#specialheader1{background-color:#000099;color:#FFFFFF;text-decoration:none;font-size:1em;width:300px;}#specialheader2{background-color:#000099;color:#FFFFFF;text-decoration:none;font-size:1em;width:300px;}#specialheader3{background-color:#000099;color:#FFFFFF;text-decoration:none;font-size:1em;width:400px;}/* end bottom structuralization *//* This below here is goign to kill some of the obnoxious parts out of the lists, removing the bullets, pulling away the padding on the left hand side ex cetera. */li{list-style-type:none;margin-left:0px;padding-left:0px;}/* end the part with messing around with the lists *//* this is just random styling, and doing things here and there to the general structure of the site */#copyright{clear:both;}#bottomnav li{display: inline;list-style-type: none;padding-right: 20px;}#directory{margin-bottom:0px;} Website I am working onOk Here are the things I am trying to do, I just can't figure out, at the bottom, I created a list with navigation, I can't get it to center, or the thing below it, I tried text-align:center in css, I rely mostly on CSS, and I REALLY don't want to use html to position, I want to be able to do this in, CSS, is it possible for me to find a way to get those centered.ANY help I would be greatly appreciative.
  6. hmm what is better. I rely on CSS, alot but I think I will be safe relying on size for this, I just have to make sure it's not deprecated, thanks for the help, I didn't think of that, I appreciate it.
  7. SOLVED-thanks to just some guy. Thank you for the help.I am trying to set up a longer text field here.I can't get it to work properly, I was thinking of using text-area but I want to avoid that because it will always show a scroll bar there, and I didn't want that. What I wanted was to just increase the length of it, let me know if you have any advice.Websiteit's at the top right hand corder, where it asks to search, my client is wanting me to be able to increase the length of the text area, how do I do that.
  8. I fixed it, but what alignment problems in the body, can you point those out so I can fix them.
  9. Then entire layout is finished, and I was about to start working on the backend programming, but I ran into a problem, above is the html, below is the css, after that are notes about what's going on <!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="funnyemails.css" /><meta name="Description" content="If you have a funny email, feel free to put it into our database, to send to all the people signed up to recieve funny emails" /><meta name="Keywords" content="funny, emails, email, fowards, joke, video, song, poem, picture, yellow pages, services" /><meta name="author" content="A service of Yellow Pages Online" /><title>Funny Email Forwards</title></head><body><div id="header"><img src="images/logo.gif" /><br /><p id="headertext">The web's directory of funny Email forwards<br /><a href="http://www.yellowpagesservices.com" id="headerbelow" title="The Yellow Pages Services" target="_blank"><img src="images/ypol.gif" /></a></p></div><div id="containleftright"><div id="leftdiv"><h3>Add Something Funny:</h3><form name="submitinformation" id="submitinformation" action="post"><label for="type">What Type of Funny is it:</label><select name="type" id="type"><option>Video</option><option>Picture</option><option selected="selected">Joke</option><option>Song</option><option>Poem</option><option>Story</option></select><br /><label for="name">Name the Funny:</label><input name="name" id="name" type="text" maxlength="80" /><br /><label for="keywords"><a href="keywords.htm">Keywords:</a></label><input name="keywords" id="keywords" type="text" maxlength="80" /><br /><label for="file">Upload your file here:</label><input name="file" id="file" type="file" /><br /><input name="submit" id="submit" type="submit" value="Do It!" /></form></div><div id="middlediv"><p>OR</p></div><div id="rightdiv"><h3>Search For Something Funny:</h3><form name="search" id="search"><label for="searchfield">What would you like to search for?</label><input name="searchfield" id="searchfield" type="text" maxlength="60" /><br /><input name="search" id="search" type="submit" value="Do It!" /></form></div></div><div id="wrapupperbottom"><h3>Directory of Listings:</h3><div id="upperleft"><h3 id="specialheader1">VIDEOS</h3><ul><li>Link Number one will go here</li><li>Link Number two will go here</li><li>Link Number three will go here</li></ul></div><div id="uppermid"><h3 id="specialheader2">PICTURES</h3><ul><li>Link Number one will go here</li><li>Link Number two will go here</li><li>Link Number three will go here</li></ul></div><div id="upperright"><h3 id="specialheader3">JOKES</h3><ul><li>Link Number one will go here</li><li>Link Number two will go here</li><li>Link Number three will go here</li></ul></div><div id="lowerleft"><h3 id="specialheader1">SONG</h3><ul><li>Link Number one will go here</li><li>Link Number two will go here</li><li>Link Number three will go here</li></ul></div><div id="lowermid"><h3 id="specialheader2">POEM</h3><ul><li>Link Number one will go here</li><li>Link Number two will go here</li><li>Link Number three will go here</li></ul></div><div id="lowerright"><h3 id="specialheader3">STORY</h3><ul><li>Link Number one will go here</li><li>Link Number two will go here</li><li>Link Number three will go here</li></ul></div></body></html> body /* This part styles the body, and prepares it for the content */{margin-left:0px;margin-top:0px;margin-right:0px;margin-bottom:0px;font-family:Arial, Helvetica, sans-serif; /*this sets the font type*/font-size:15px; /*This sets the general setup of the text on the site*/}h3{font-weight:bold;text-decoration:underline;}img /* this removes borders around linked images */{border:none;}/*Everything in this section below here controls the form field boxes, this allows them to all be spaces properly and make them all look even from the form names */#type{margin-left:50px;}#name{margin-left:100px;}#keywords{margin-left:142px;}#file{margin-left:75px;}/* End working with form fields *//* Below starts working with the header, situating the text, and the images for the header, and getting it all aligned and set up properly */#header{padding-left:10px;padding-top:10px;}#headertext{padding-left:15px;text-indent:0px;margin-top:0px;margin-bottom:0px;padding-top:0px;padding-bottom:0px;font-weight:bold;}#headerbelow{padding-left:20px;}/* End header modification *//*Everything in the following sections lays the foundation for the main body set up. What happens here is I set the 3 main sections in the middle, below the header. I wrapped them in something, and put them all in a container, and working with all 3 I set them up to style correctly, and made it easier to make any types of modifications on any of the 3 elements in the containment div */#containleftright{padding:0px;width:1000px;margin-top:20px;margin-left:8px;}#leftdiv{float:left;margin-right:4px;}#middlediv{font-weight:bold;float:left;margin-right:80px;margin-top:30px;}#rightdiv{float:left;margin-top:4px;}/*end structuring main sections */\/* everything in this section is going to set up the way the stuff looks at the bottom, and how it is all organized. This whole part may seem confusing, what it does to wrap the entire section at the bottom in 1 div, then it has 6 different sections for new divs, I made it this way so someone could very easily add in more rows if necessary with only having to change around a few tag names, and working a little bit adding some to the css. This way also allows it to wrap around as it minimizes, it just adds more rows for people with smaller browser windows. */#wrapupperbottom{width:900px;}#upperleft{float:left;}#uppermid{float:left;}#upperright{float:left;}#lowerleft{float:left;}#lowermid{float:left;}#lowerright{float:left;}#specialheader1{background-color:#000099;color:#FFFFFF;text-decoration:none;font-size:1em;width:300px;}#specialheader2{background-color:#000099;color:#FFFFFF;text-decoration:none;font-size:1em;width:300px;}#specialheader3{background-color:#000099;color:#FFFFFF;text-decoration:none;font-size:1em;width:400px;}/* end bottom structuralization *//* This below here is goign to kill some of the obnoxious parts out of the lists, removing the bullets, pulling away the padding on the left hand side ex cetera. */li{list-style-type:none;margin-left:0px;padding-left:0px;}/* end the part with messing around with the lists */#bottom{clear:both;} Here is a url to the websiteWebsite HereNow the problem I am having the the footer at the bottom, the copyright information is at the bottom, great.But what is going wrong, is when I minimize the screen, everything works 100% like I anticipated except for the fact that the footer(copyright information), get's kicked up into the upper part, I don't understand why this is happenening, this layout is a little deeper than my other projects but most of the time it flows just fine with the rest of the page content.
  10. SOLVED-The problem was solved thanks for the help!I am working on a project, I have the top 2 sections done, I am trying to create something at the bottom.6 different sections, and when it reaches the right I want it to overflow over to the next area down, like 3, then 3, then if more adds, then it can move downwards as it goes, any advice would be greatly appreciated, on how I can accomplisht his using css.
  11. Umm, can someone please explain classes without using real world objects, that's why I never understand, I need to understand how classes work when talking about php, even the php book I have " in a nutshell" or something uses dog and cat, I can't sit down with a php script and tell a dog to bark, and a cat to meow, I need to know where I will use this, any examples appreciated.
  12. SOLVED-The problem has been solved thanks for the help.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. 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} <!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> Any advice or guidance would be greatly appreciated.
  13. There is a way to pass variables on from language to language though that's what I like about javascript/php
  14. SOLVED-I put this on the backburner, possibly gone forever it was just a program I was thinking about building in javascript, creating a big database(in javascript arrays) and then calling them through a text field to retrieve all the information, I don't want to reveal the idea, but for now I have put it on the side, so problem solved basically.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 instanceKey 1-has 10 different arrays hooked to it and if I call that 1 then all the information comes for instanceArray 1[1] baboon[2]catarray 2[1] hairy[2] 4 legsarray 3[1]stupid[2]2 legsIt'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.
  15. I really appreciate all the advice, I normally get help off of phpfreaks.com and I have a few people I look up there, one kid 16, is a master of css, the best css coder I have ever thought of encountering, he can do anything with css, and now I think I found some php people that inspire me. One personal question, how old areyou, and what all languages do you currently know, "just some guy"
  16. I will try both of those, I forgot I even had this post out there, thanks for the help.
  17. Thanks I appreciate that, I was looking through the code but never noticed that a tag there, I appreciate it again, thanks.
  18. do you build your own forums, guestbooks, message boards and everything, if so then I think I want to take your advice, because I like you, and you seem like a god of php.
  19. theres a huge white chunk around the bottom of the link ,it's not meant to be there, checkwww.freelancebusinessman.comthat is how it's supposed to be.
  20. I don't get it but the borders aren't leaving the links on the validation atwww.moondancedesign.comI have tried all the standard, and some of the advanced methods but it's just not working. body { /*this is what is going to style the body, and position everything */margin:0 auto;padding:0;font-size:1em;background-color:#f4f4f4;color:#FFFFFF;background-image:url(images/backgroundpic.gif);background-position:center;background-repeat:repeat-y;}a img{border:none;}#wrap {background:#ffffff;color:#000000;margin:0 auto;width:760px;}#header {clear:both;margin-top:20px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding:0;height:45px;}#header h1 {width:250px;margin-top:0px;margin-right:0px;margin-bottom:10px;margin-left:0px;float:left;font-family:Papyrus, Arial, Courier, sans-serif;}#header p {width:500px;float:right;background-color:#FFFFFF;color:#a0a0a0;margin-top:0px;margin-right:0px;margin-bottom:10px;margin-left:0px;font-size:0.8em;font-family:Papyrus, Arial, Courier, sans-serif;line-height:1.2em;}#frontphoto {margin-top:0px;margin-right:0px;margin-bottom:10px;margin-left:0px;border:0;}#avmenu {clear:left;float:left;width:150px;margin-top:0px;margin-right:0px;margin-bottom:10px;margin-left:0px;padding:0px;font-size:0.9em;}#avmenu ul { list-style:none;width:150px;margin-top:0px; margin-right:0px;margin-left:0px;margin-bottom:20px;padding: 0;font-size: 1.1em;} #avmenu li {margin-bottom: 4px;}#avmenu a {font-weight:bold;height:20px;text-decoration:none;color:#330000;display:block;padding-top:6px;padding-right:0px;padding-bottom:0px;padding-left:10px;background-color:#CC99CC;border-left:4px solid #cccccc;} #avmenu a:hover {background-color:#CC99FF;color:#330000;border-left:4px solid #286ea0;}.announce {margin-top:10px;margin-right:0px;margin-bottom:10px; margin-left:0px;padding:10px;width:130px;color:#000000;background-color:#F5DEB3;line-height:1.3em;font-family:Papyrus, Arial, Courier, sans-serif;}#extras {float:right;width:100px;margin-top:0px;margin-right:0px;margin-bottom:10px;margin-left:0px;padding-top:4px;padding-right:0px;padding-bottom:0px;padding-left:4px;font-size:0.9em;font-family:Papyrus, Arial, Courier, sans-serif;line-height:1.5em;color:#000000;background-color:#F5DEB3;}#extras p {margin:0 0 1.5em 0;}#content {margin-top:0px;margin-right:110px;margin-bottom:20px;margin-left:160px;border-left:1px solid #f0f0f0;border-right:1px solid #f0f0f0;padding:0 10px 0 10px;line-height:1.6em;}#content p{font-size:0.8em;font-family:Arial, Helvetica, sans-serif;}#content h2 {font-size:1.5em;margin-top:0px;margin-right:0px;margin-bottom:0.5em;margin-left:0px;font-family:Papyrus, Arial, Courier, sans-serif;}#content h3{font-family:Papyrus, Arial, Courier, sans-serif;}#content img {padding:1px;display:inline;background:#cccccc;color:#000000;border:4px solid #f0f0f0;}h3 {font-size:1.3em;margin:0 0 10px 0;}a {text-decoration:none;color:#286ea0;background-color:#FFFFFF;}a:hover {text-decoration:underline;color:#286ea0;background-color:#FFFFFF;}#footer {clear:both;margin:0 auto;padding:10px 0 20px 0;border-top:4px solid #f0f0f0;width:760px;text-align:center;color:#000000;font-size:0.9em;background-color:#F5DEB3;font-family:Papyrus, Arial, Courier, sans-serif;}#footer a {color:#808080;background-color:#FFFFFF;text-decoration:none;}#footer a:hover {text-decoration:underline;}.left {margin-top:10px;margin-right:10px;margin-bottom:5px;margin-left:0px;float:left;}.right {margin-top:10px;margin-right:0px;margin-bottom:5px;margin-left:10px;float:right;}.textright {text-align:right;}.center {text-align:center;}.hide {display:none;}
  21. I have a question I want to ask people in general. Advice so to speak to try and figure out somethign I want to do. I see a lot of stuff out there relating to PHP Pre-Installs. There 3rd party scripts, of special programs to avoid you having to do it yourself.For instance.Shopping carts, message boards, forums, guestbooks, mailing list managers, chatrooms, and other things that are created so people can download them.I know that creating a basic mailing list takes like 1 day, to add more features it takes more.I am faced with a project now, I am a web designer/coder/programmer. I love programming, I have installed Zen Shopping cart, but then I start to think, if I decided to build this entire shopping cart from scratch how long would it take me. Could I finish in a few weeks, working on it part time, or is building a shopping cart something that will take me months, and months, to finish. I like the preinstalls, but I need something where I can carry the data throughout my pages, and wire it in freely to my clients gallery pages. I like the thrill as well of programming, so I am wondering, if I take the time to start building it, how long to build a basic shopping cart, wired through the websitewww.moondancedesign.com, and is just build for that purpose. How long will that take for me to build. It will only be accepting paypal anyway so no need for major credit card processing, and tax won't be included, so that is not an issue either. So what do you think, is this something I can do, I had some people help me on php freaks before, someone set down and told me not how to, but the general steps needed to build a mailing list, in 1 day I built the form, the mailing list, the area where they log in and send out the emails, the database, and have it record and remove email addresses. It took me 2 days of fiddling with it, and it was the most fun I have had in my entire life, I know that it is a BIG issue in dealing with security, and I want to try to make it secure, but I am still thinking of doing it myself, any advice, or comments, or answers would be greatly appreciated, thanks again in advance.
  22. How do I get the subscribe and unsubscribe to do different things. FOr instance I know how to validate it already, someone also told me how to work in the processing for the database, the results of the form. but I don't know how to make the unsubscribe button remove the data from the form IF it is currently present in the database, but return an error if it's not in the database.
  23. What is the best way to use php functions when dealing with MYSQL information.I create a form and I am trying to validate it with php, if it passes validateion THEN send it through the the Mysql functions.Should I have the mysql on the same page, or put them in a different page and include them, if so how.
×
×
  • Create New...