Jump to content

peranha

Members
  • Posts

    878
  • Joined

  • Last visited

Everything posted by peranha

  1. We used Asus boards for work, and had the same issues as you described plus others. Turns out that they had a problem with capacitors bursting on the boards. We have since then switched to Gigabyte, and have not had issues as of yet. Check the capacitors on the board and see if they are popped up on the top.
  2. You could always try Good old DOS to see if you can access the files that way and copy them over to a new drive.
  3. Yeah, I must second his suggestion to get matching monitors.... I have a 23" LCD and a 16" CRT.... It's pretty weird. lol. (But of course the difference in most monitors wouldn't be that drastic.) CRT? I havent seen one of those in quite a while. I use dual 19" Wide screens on mine, and have a 3rd for computer repairs. I am not sure if you can use the onboard video for a 3rd monitor with a dual video card or not, never tried it. That would give you 3 with only 1 extra card (dual) with the onboard video (single). I may have to try it and see if it works.
  4. peranha

    Flash + PHP

    Not sure you need to put it in an object. I just use the < embed> portion on my site, and it works fine. <embed src="template/img/sub.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="547" height="248"></embed>
  5. Have you used this CD before to install XP on another computer? If so, 1. Check the MBR of the Hard Drive. 2. Get a memory checker and check the ram for faults. Did you have issues with this computer before that you are reinstalling windows, or is it a new PC, that has never had an OS on it?
  6. Yes that code is correct. "localhost" is the server. "root" is the user name to the sql server "mypasswrd" is the password for the "root" user on the "localhost" server. Do you have MySQL set up on your computer? if so localhost is correct for the server. when you set it up, you needed to specify a username and a password. Those can be used for the user and password fields. If you dont have MySQL set up on your local computer, then the "localhost" server will not be correct and will need to be changed.
  7. Change this // UPDLOAD $result = mysql_query($query) or die ('Error updating database'); to // UPDLOAD $result = mysql_query($query) or die ('Error updating database'.mysql_error()); See if you get any error messages.
  8. Not quite sure if this is what you are after, but in the <head> section of your page you will need a link to the css file. <head> <link href="style.css" rel="stylesheet" type="text/css" /> </head> Then on your pages you will call that depending on whether you set it to an "id" or a "class".
  9. There are tutorials on the main site. http://www.phpfreaks.com/tutorials
  10. http://www.google.com/products/catalog?q=autocad+2009&oe=utf-8&rls=org.mozilla:en-US:official&client=firefox-a&um=1&ie=UTF-8&cid=1326053958663334743&ei=vBKnSqHaLZGkMMnI5LEP&sa=X&oi=product_catalog_result&ct=result&resnum=6#ps-sellers 600-1300 You can get a professional version for 3500+
  11. The only thing I have used is Autocad, but that is probably way more than you want to spend.
  12. How are you passing from test1 to test2? If you are using a submit button if (isset($_POST['submit'])) {// Name of your submit button // Code to process } else { // Error message }
  13. We need the input to database part, not the receive part of the script since you said that there is nothing in the database, the error is inputing it.
  14. Thanks. For some reason Chrome and IE put a 10px space after you end a < p> tag, but firefox doesnt. I dropped the p tags, and put everything in divs.
  15. echo '<form method="post" enctype="multipart/form-data">; <br />; Should be echo '<form method="post" enctype="multipart/form-data"> <br />'; You really need to check that code over. Are you meaning to exit out of php after line 94? if so you will need to change all lines afterwards as HTML does not use ; to close.
  16. From this statement here: I think it is going to shut down sites like Shawn Hannity, Bill Orielly, and that sorts, so that there are no apposing views of his policies. Thats what I pick up from the article. Also this part may not be good:
  17. Can you rename the field name? index is a Mysql reserved word. if you cant you will need to change the query to $sql = mysql_query("SELECT * FROM content WHERE `index` = '$id'"); It is better to change the field name.
  18. Change this $sql = mysql_query("SELECT * FROM content WHERE index = '$id'"); to $sql = mysql_query("SELECT * FROM content WHERE index = '$id'") or trigger_error(mysql_error()); and see if there is an error. Are you sure that the field is index and not Index, or something like that?
  19. All your if statements need to have == not just = == (equal to(compare 2 values)) = (sets a value to something)
  20. peranha

    wtf???

    Your house/apartment/whatever wiring is not grounded properly. I had the same issue, except I was getting truck CB waves through mine.
  21. I dont want to use padding as it pads all browsers, I need something that will just pad firefox, not IE and Chrome. Here is a pic of firefox and Chrome. In Chrome there is a space between the last post and the footer, but in firefox there is no space, they run together. I want the space in there, but without affecting the other 2 browsers if possible. [attachment deleted by admin]
  22. How can I add a padding to the bottom of the div in firefox only? I have a div that in IE and Chrome there is a white space between the footer and the main div of the page, but on firefox the main div and the footer all run together. Adding padding: 0 0 5px 0; will add the padding in all browsers, and does not look good in IE and Chome.
  23. when validating at strict you need to use & not just the & Heres the error I was getting.
  24. When I validate my contact page, it gives me errors, all related to my form action="?p=contact&t=check_contact_info" It errors out at the t= part. Is there any way to get around this so it validates.
  25. peranha

    CSS Center

    #left { margin-left: -50px; } Something like that will work.
×
×
  • 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.