- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 2
- Posts with Upvotes
- 2
- Upvoting Members
- 2
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
14 Posted Topics
Are you sure that the network adapter is still in a proper, functional state, and did you make any changes to the computer recently that might have lead to this result?
I love how much you are asking. If statements are simply a high-level representation of logic. A computer (at least an x86 (Intel) based one) evaluates a condition and stores information in internal buffers, and then a call is made to jump if the the condition is met. Int and …
It is possible to get input from the keyboard without calling int 16h, but I would not recommend it unless you know exactly what you are doing and the effects that it would have on the rest of the system. I am assuming that you are not writing an OS, …
Yes, it is possible to write programs in multiple languages, I do that semi-frequently. One of the easiest ways (at least in my opinion) is to compile the code into several object files, and then link them together.
Hello I have tackled this problem before, so I can tell you what to do. Assuming that the images are stored in a database: [CODE] <?php $con = mysql_connect ( $server, $uname, $pass ); if ( !$con ) die ( mysql_error() ); mysql_select_db ( "images" ); $query = "SELECT * …
Hello, I recently made operable a computer based off of the Intel STL2 server motherboard, however when I try to start the computer and boot from the Windows XP CD, I get the following errors: PXE-E61: Media test failure, check cable PXE-MOF: Exiting PXE ROM. Operating System not found Upon …
This is caused by PHP not loading the MySQL modules. To fix: make sure the file php_mysql.dll (php_mysql.so on non-windows) is in the ext folder of the PHP install; Make sure that the php.ini file that is loaded tells PHP to include that module and that all settings for it …
It is possible to send a message to some SMS Gateways ([URL="http://en.wikipedia.org/wiki/List_of_carriers_providing_SMS_transit"]http://en.wikipedia.org/wiki/List_of_carriers_providing_SMS_transit[/URL]). Hope this helps.
Hello, First I would like to say that if you are only connecting to one server, that a class is completely unnecessary, however since you have a class started, I will try to help you make it work. One thing that I would do (I know from experience that this …
This is easy: For the PHP script: [code] <html> <head> <title>PHP Sample</title> </head> <body> <?php $height = $_POST["height"]; $width = $_POST["width"]; echo "Parimeter: " . 2*($height+$width) . "<br /> Area: " . $height*$width . "<br /> Diagonal: " . sqrt(($height*$height)+($width*$width)); ?> </body> </html> [/code] For the form: [code] <html> <head> …
You need to write a Fraction class for this to work [code] using namespace std; class Fraction { public: int numerator; int denominator; } [/code] Hope this helps
I am currently making an IRC bot in C++, and i am getting an error from trying to bind the socket, error 10049: WSAEADDRNOTAVAIL. I am new to sockets in C++, so I was wondering what I did wrong. I am running Windows Vista Home Premium and compiling with Bloodshed …
Hello everyone, I am Robert, relatively new to most aspects of this, but helpful usually.
The End.