- Upvotes Received
- 11
- Posts with Upvotes
- 11
- Upvoting Members
- 2
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
- PC Specs
- Actual newest rig:Dell 1.6GHz 160GB/80GBMy love:PowerMac 7200/90 (upgraded to a G3, yeah baby!)
Re: What about the $1.5+ trillion (that the taxpayers will be forced to pay) the Fed pumped into the financial system last week? And the fact that every fiat currency has failed and must fail. It's long overdue that we return to the gold standard. It's true that the markets can't … | |
I know they don't have standard ASCII values, but how do you check for them? I am making a command prompt-type interface for a text-based RPG a friend and I are making, and I would like to be able to use the arrow keys to navigate in menus. I am … | |
Hello, I found a php function that utlizes smtp authentication to send emails. However, when I tried it, no errors are echoed to the browser, but when I check my inbox, there is no mail from that site. I don't think anybody else is getting them either because I asked … | |
I'm making a site for a guy, and he needs a way to email all his customers with a single form to save time and be more efficient. I got the compose page done. But in the past, from my experience, when I sent myself emails generated from sendmail, some … | |
How do you send emails encrypted with SSL from php? Thanks | |
I'm not sure if this should go in the MySQL board, or this, since it deals with both PHP and MySQL. But anyway, I am making a sports memorabilia site for a guy. On the item creation page, after I call the function to prevent sql injection, no matter what … | |
I am making a section in the users' profile where they pick their favorite teams, which might be in different leagues (NCAA, MLB, NFL). When the user picks the league, it takes them to the next page that lists the teams under their respective conferences (Big 10, Big 12, NFC, … | |
So I'm messing with some code, trying to get more familiar with string functions, and I stumbled into an apparent error on my part. Here is my code: [CODE]#include <stdio.h> #include <string.h> int main(void) { int len = 0; char *str = "This is a string"; char ch = '\0'; … | |
[QUOTE]In Visual Basic 6.0, control arrays could be used to specify a group of controls that shared a set of events. The controls had to be of the same type, and they had to have the same name. In Visual Basic .NET, control arrays are no longer supported. Changes to … | |
I was just at validator.w3.org testing my site, and it found <td background='bricks.jpg'> as an invalid tag. It said Line 25, Column 29: there is no attribute "background". I am using XHTML 1.0 Transitional. Did they really do away with image backgrounds? I can't imagine that they'd want pages to … | |
I don't know what happened to my previous topic about this. But I am using an AJAX menu on a page I am making for somebody, and I used the exact same code w3schools recommends to use: [CODE]function updatemenu(leagueno, confno, location, mode) { xmlHttp=GetXmlHttpObject(); if (xmlHttp==null) { alert ("Your browser … | |
For me the big problem is action='foo.php' Unless I am mistaken, any submit button would send the form to foo.php by POST, so I would need a second form to have an alternate action page. I made a table to show the user's contents in the shopping cart, with a … | |
Hi. I'm using AJAX to make a menu for a guy's website I'm making for him. Anyway, he has a sports memorabilia store. I have a simple menu. There is a drop down box that you click on to select the sports league you want. Then below it is another … | |
Hello everyone, I am in the market for a new system and wanted to customize my own. I need a decently fast motherboard/cpu setup, and would prefer a Core 2 Duo system. Like the title stated, it needs to be compatible with Linux (Ubuntu), and this is the main reason … | |
Re: I am not familiar with PS3, but is this widget for Mac OS X or a different platform? I only ask because there are small programs for it called widgets, and I didn't know if what you were trying to make were the same thing. Diode | |
Hi, I'm making a website for a friend who sells sports memorabilia and I'm using a LAMP setup. I am making a menu that utilizes AJAX. The menu consists of a SELECT tag, we'll call this SELECT1, where the user clicks it, it drops down a list of leagues such … | |
Hello, I am trying to output simple sound through the internal computer speaker. Is there a way to output certain sounds and control the frequency of the sound as well as the time it lasts? I'm using Windows XP Pro but is there a "standard" way to do this? Thanks … | |
Hi everyone, I am getting frustrated in my search for schematics and tutorials of cpus on the web. I've been searching for literally months, looking for at least one good tutorial on how cpus are built and how they work on a very low level. I want to learn exactly … | |
Re: Sounds like maybe a bad motherboard or bus controller went out or something. Did you properly ground yourself when working inside? Maybe a conductive trail got damaged, but I doubt anyone would be that careless. Have you tried isolating the RAM to make sure it isn't bad RAM? I'm leaning … | |
Hi, I'm making a website for a guy for free as a favor. However, he wants a flash animated banner on the top of his pages. However, I have found that there are different versions of flash out there. Which version do I need? I will not actually be buying … | |
The title might be messed up a bit; I didn't know how else to title it... Basically I'm making a web page for a guy who sells sports memorabilia/penants/team clocks, etc. for free as a favor, and I'm making the item create page where you type in the name of … | |
I'm trying to figure out how to parse options such as -h out of the arguments passed on the command line when the program is called. Here is my code so far. I compiled it with gcc -Wall -o options options.c and got no warnings or errors. Although, when I … | |
I don't know about C, but I read that C++ doesn't have any "standard" library for networking stuff. I was wondering which libraries for C were more popular or higher acclaimed. And who better to ask than the experts themselves? Many thanks in advance diode | |
Hello, I volunteered to make a website for someone, although I've never done a professional one for a company before (he has a small business). He wants to sell sports gear/memorabilia on his site, and I've never made an e-commerce site before. I know php and mysql but how do … | |
Re: http://www.daniweb.com/techtalkforums/thread55808.html Why don't you study my program that I have provided here. Your answer is in my topic at the link provided. Diode | |
I tried typing [CODE]printf("\033[34m");[/CODE] for blue foreground color, and other values, but nothing worked. So I included: [CODE]device=D:\WINDOWS\system32\ansi.sys[/CODE] and [CODE]devicehigh=D:\WINDOWS\system32\ansi.sys[/CODE] into my system.ini file to load the ANSI driver, both under the device part of the file, and it still didn't show any color. My Jamsa's C/C++ Programmer's Bible tells … | |
Hello, :) I have chosen to go with getch() for my keyboard input. However, when I went to experiment with it, I got some unexpected results. The 'Y' in 'Your word was ' is missing in the command prompt when I run this program after I compile using gcc, and … | |
Hello, I am trying to develop something that, when you press a character on the keyboard, puts a char into a char-type variable. Should be easy right? Well, I don't want to require the user to have to press ENTER when they press the key. Maybe scanf isn't the right … | |
Hello everyone, how are you? I have Visual Studio.NET 2003 and Windows XP Pro SP2. My Visual Studio.NET won't open ASP.NET projects because it says I don't have ASP.NET 1.1. It turns out that I used WindowsUpdate to manually get v 1.1.4322 and it still says it. I have the … |