Jump to content

Little Goat

Members
  • Posts

    733
  • Joined

  • Last visited

Posts posted by Little Goat

  1. the problem with using a computer for all you use it for now AND a server, is that it will use a lot of resources (memory, CPU, etc.). you should probably get a used computer or something to do the server with.it might be cheaper to just get hosting. you can get free hosting at several places, and a domain name can be as cheap as $3.00 a year. (yahoo domain name registration first year is like 2.95)

  2. well, I'm in opera, and all your webpage shows for me is the background.the source looks fine, but it won't show anything. maybe it's just me. it might have something to do with your comments; in a few spots you have one dash (-) instead of two, such as at the end of a few comments.I actually don't know...EDIT: it also might have to do with the fact that some of the attributes in the html tags are escaped (ex. \' ).

  3. in the php.ini, there will be a line like this:;extension=php_mysql.dllyou need to remove the semicolon (; ) and make sure that the file php_mysql.dll is in the php folder. the default location of the dll if it isn't in the php folder is the php/ext folder. copy it from there. of course, this is with Windows. I don't know how in linux.

  4. so you want the content in the second box to be different depending on what was chosen before?that takes Javascript, so you need to know that first. then you would use the onchange event to update the second box when you change the first one. you could probably hide the ones you don't want by using document.path.to.option.tag.display="none"/"block"/"inline"

  5. you know, that used to happen on one of my webhosts... I don't know why. is this on your local machine? if so, try it on a remote host if you can.

  6. I tried the h4ckme site just a second ago, and it comes up with an error page that says there is no webpage configured at the address. hopefully that means that they got kicked off thier hosting.

  7. Aspnet...it might be because of Littlegoats 'ie bug fixer' article. Try setting that to invisible and checking the page? :)

    by the way, that isn't my article. I think it's reportingsjr's.I can see the page, but it's all messed up, with two of the top banner, and down at the bottom scotts article is replaced by mine halfway through. lol. :) sorry, I really shouldn't laugh.
  8. //handler;$field1=$_POST['field1'];$field2=$_POST['field2'];$field3=$_POST['field3'];   if ($field1 == "" || $field2 == "" || $field3 == "") {//checks if a user actually filled all required fieldsecho "you didn't fill all required fields;}   else {query or other action here;}

    you forgot the quote at the end of that string. don't forget to add one before you test it.
  9. the embedding is diffferent for each type of file. for images, you just use the standard <img> tag, and for movies you use the <object> or <embed> tags. (i'm not sure on the syntax of the object or embed tags, sorry. search for movies in the html section and maybe you will find something)

×
×
  • Create New...