Jump to content

peranha

Members
  • Posts

    878
  • Joined

  • Last visited

Profile Information

  • Gender
    Male

peranha's Achievements

Regular Member

Regular Member (3/5)

0

Reputation

  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.
×
×
  • 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.