Forum: MySQL Jul 7th, 2006 |
| Replies: 13 Views: 3,890 The text after the closing paranthese in the mysql table definition shouldn't matter. It definitely isn't impacting the id thing.
If the table wasn't created successfully, remove the text... |
Forum: Motherboards, CPUs and RAM Jul 7th, 2006 |
| Replies: 4 Views: 911 If this were me, I would try to narrow down the problem. If you're comfortable working on the inside of the machine, I would try to disconnect any add-on hardware and run memtest... |
Forum: IT Professionals' Lounge Jul 7th, 2006 |
| Replies: 5 Views: 7,415 Ok, unfortunately, what you're trying to do is beyond the scope of my experience with the Google maps API, so hopefully somebody else picks up the thread. Good luck. |
Forum: MySQL Jul 7th, 2006 |
| Replies: 13 Views: 3,890 Ok, I'm not sure why it's creating a new row in the db. I thought maybe you had the id column set to auto-increment, but I think the query would actually fail if you did that. It might be something... |
Forum: MySQL Jul 6th, 2006 |
| Replies: 13 Views: 3,890 Does the echoed query match what you expected? Can you post the echoed query here? Was the $2 in your original query a typo? |
Forum: Motherboards, CPUs and RAM Jul 6th, 2006 |
| Replies: 4 Views: 911 There is something causing your computer to randomly reboot - probably hardware, but maybe software. Have you added any hardware lately or recently installed software? There is usually a hex value... |
Forum: Troubleshooting Dead Machines Jul 6th, 2006 |
| Replies: 2 Views: 1,317 Usually the beep(s) you hear are trying to tell you something. You might want to reference your motherboard manual. You could also try disconnecting everything from your motherboard except video... |
Forum: MySQL Jul 6th, 2006 |
| Replies: 13 Views: 3,890 Is the $2 in your query supposed to be a PHP variable? It may be a typo, but if not I don't think PHP allows a variable to begin with a number.
One trick I used to use a lot when beginning with... |
Forum: Motherboards, CPUs and RAM Jul 6th, 2006 |
| Replies: 3 Views: 2,429 Once again, your post is a little vague and I'm not sure if you are still requesting assistance. If that is your intention, can you describe what screen does show up when you press F1? In addition,... |
Forum: MySQL Jul 6th, 2006 |
| Replies: 13 Views: 3,890 Ok, this should just be a matter of syntax. For your query, use:
INSERT INTO table_name (id) VALUES ('2')
See here for more in-depth info (my example is a little short to be really useful):... |
Forum: Networking Hardware Configuration Jul 6th, 2006 |
| Replies: 2 Views: 1,104 A lot of people do experience this issue - myself included. The cable companies claim that they don't care what devices are connected on your end, but there remains much speculation about that. ... |
Forum: IT Professionals' Lounge Jul 6th, 2006 |
| Replies: 5 Views: 7,415 You can sign up for a Google Maps API key here:
http://www.google.com/apis/maps/signup.html
Go here for a simple introduction:... |
Forum: Motherboards, CPUs and RAM Jul 6th, 2006 |
| Replies: 4 Views: 3,941 Without actually looking at the PDF, I would bet this has what you need:
http://www-307.ibm.com/pc/support/site.wss/document.do?lndocid=MIGR-42308 |
Forum: Motherboards, CPUs and RAM Jul 6th, 2006 |
| Replies: 3 Views: 2,429 Your post is a little vague. Are you talking about the boot order of your devices? If so, the exact procedure for changing the order depends on your setup, but generally there is a key you need to... |
Forum: MySQL Jul 6th, 2006 |
| Replies: 13 Views: 3,890 Could you be using an UPDATE instead of an INSERT statement? |
Forum: OS 7 / 8 / 9 Jul 6th, 2006 |
| Replies: 1 Views: 3,859 Depending on your exact OS 9 installation, Stuff-It is / was usually included as part of the install. Do a File > Find for Stuff-It or Aladdin. If it's there, it's buried but I don't remember where... |
Forum: MySQL Jul 5th, 2006 |
| Replies: 2 Views: 1,361 You need to pass a valid resource to the mysql_num_rows() function. For instance, you would generally build your query:
$query = "SELECT * FROM tablename"; Then to get the result:
$result =... |
Forum: PHP Jul 3rd, 2006 |
| Replies: 4 Views: 2,808 Ok, from your ServerRoot variable in httpd.conf, you are using Apache 2.2. It doesn't appear that Apache 2.2 and PHP5 are compatible unless you jump through some hoops. If you want something set up... |
Forum: PHP Jul 3rd, 2006 |
| Replies: 4 Views: 2,808 Watch for backslashes in path when using Windows. You should use forward slashes like you did for PhpIniDir. |