Showing results 1 to 40 of 127
Search took 0.01 seconds.
Posts Made By: sDJh
Forum: Windows 9x / Me 4 Days Ago
Replies: 1
Views: 69
Posted By sDJh
Reinstalling WinME: MBR not setup correctly

Hello all together,

my old computer with WinME got a really bad virus that I couldn't remove so I reinstalled the OS. The trouble is, that after the setup BIOS tells me that no OS is installed -...
Forum: PHP 7 Days Ago
Replies: 1
Views: 150
Posted By sDJh
Re: Simple question for PHP

1) You better don't do it this way. Write a JS-function popup with an argument. THen popup the argument (which is window.open() by the way).
2) in every link you pass the complete url from PHP to JS...
Forum: PHP 29 Days Ago
Replies: 2
Views: 199
Posted By sDJh
Re: Is That Possible in PHP

sure you can - at least with a few downsides.
Make a pop-up-window with Javascript that loads a PHP-file. In this PHP file you can programme a very basic color-picker with the main colurs (eg in...
Forum: Assembly 32 Days Ago
Replies: 2
Views: 289
Posted By sDJh
Re: declaring a string with a variable

Of course you get. X_VALUE is printed as ASCII-Character. You have to write a procedure to convert numbers to strings. Converting them to hex is quite simple. Just have a look out in the net.
Forum: PHP 32 Days Ago
Replies: 3
Views: 344
Posted By sDJh
Re: problem with file_get_contents?

Guess it takes PHP so long to fetch the data from the file. Try to put the function file_get_contents() after the header-modification.
Don't know if thats the problem but tell me anyway if it worked...
Forum: PHP 32 Days Ago
Replies: 1
Views: 142
Posted By sDJh
Re: help

<input type=file> is the HTML-Tag for requesting a file. Note that you have to tag the form with enctype="multipart/form-data">
Forum: PHP Oct 26th, 2008
Replies: 2
Views: 277
Posted By sDJh
Re: Please Help Me Out !!!

you can simply access the current day with the date-function. I think it's date("D") for the name of the day. As today is sunday you now that the 20th was monday, 27th is the next monday and so on.
Forum: PHP Oct 26th, 2008
Replies: 1
Views: 148
Posted By sDJh
Re: Updating data

Two possibilities:
1. (easier) - create a site for each student each
make a list of all students and link them to a to a page where detailed information about the student are given. Now you can use...
Forum: Assembly Oct 23rd, 2008
Replies: 2
Views: 495
Posted By sDJh
Re: BIOS interrupts

yes and no.

on the one hand you could actually rewrite everything from the scratch (driver for harddisks, basic graficcardoperations etc) - BIOS is also written in ASM. This is possible of course...
Forum: PHP Oct 21st, 2008
Replies: 3
Views: 165
Posted By sDJh
Re: checking if user has already voted within the past hour

The very easiest way would be to allow only registered users to vote (as it is done at youtube, amazon, and also here).

If you don't want the visitor to sign-up you can do it with a cookie, but you...
Forum: PHP Oct 21st, 2008
Replies: 4
Views: 285
Posted By sDJh
Re: dynamic product page help

exactly the way as i told you.

on the main page you link the images (headlines, etc) to the page product.php and add the ID of that product to it (eg "product.php?id=".$id).
The page product.php now...
Forum: PHP Oct 21st, 2008
Replies: 1
Views: 253
Posted By sDJh
Re: VB.Net and PHP communicating through Web Service

I guess id would be easier to simply send commands to you server via HTTP. When createing XML or any other file you have to upload and decrypt it on your webserver (which is also possible though but...
Forum: PHP Oct 21st, 2008
Replies: 2
Views: 451
Posted By sDJh
Re: how to make a voice & video chat?

voice and video definately cannot be solved in PHP. You need at least Flash (Actionscript) and/or (not sure) JAVA.

As you mentioned correctly, PHP is a server-side programming-language. Therefore...
Forum: PHP Oct 12th, 2008
Replies: 5
Views: 272
Posted By sDJh
Re: how make difference between read and unread mails.

You have to sort unread messages out with your own index. For example you save all read messages (with POP every mail as a unique ID defined by the server) in a simple text-file. When the user logges...
Forum: PHP Oct 11th, 2008
Replies: 4
Views: 285
Posted By sDJh
Re: dynamic product page help

0) Preperation:
Give all items a unique ID or name.
1) Index-Page
Ouput all items and link then to the product-page with their ID
echo "<a...
Forum: PHP Oct 11th, 2008
Replies: 2
Views: 288
Posted By sDJh
Re: I wanna learn How To use VB to make a keylogger

Wrong forum! How naive has someone to be to ask in a serious forum how to programme malware?
Forum: PHP Oct 10th, 2008
Replies: 6
Views: 415
Posted By sDJh
Re: Multiple SQL Queries in PHP page

Why shouldn't you be able to use more than one query in a php-file?

When I got you problem correctyl you want to save the selected dropdown as a flag in the table

mysql_query("UPDATE...
Forum: PHP Oct 9th, 2008
Replies: 1
Views: 120
Posted By sDJh
Re: Unable to preform queries within one button

So do you have 3 buttons "A", "B" and "AB" or do you have a form with checkboxes so that the user can choose which options he(she want's to perform?

First of all I'd work with functions. Try...
Forum: PHP Oct 9th, 2008
Replies: 1
Views: 120
Posted By sDJh
Re: login error

seems to me as if you have an empty line at the beginning of your code. Make sure that the php-tag "<?" starts directly at the beginning of your file, that all code that you include before don't echo...
Forum: OS X Oct 5th, 2008
Replies: 6
Views: 1,348
Posted By sDJh
Re: does mac get viruses???

I can agree on that. Basically every computer can get a virus (which is nothing else than a normal programme). Theoretically you can crash your computer by installing good software (Photoshop,...
Forum: Assembly Sep 23rd, 2008
Replies: 5
Views: 965
Posted By sDJh
Re: reverse string in a86

Than you can't use DX or CX for indexing. Use ESI or EDI instead.
Forum: Assembly Sep 4th, 2008
Replies: 3
Views: 455
Posted By sDJh
Re: Art of assembly question

when including source to your project the assembler's root directory is the directory of your project. So you have two or actually three choices:
1) Leave the author's libs somewhere on your HD and...
Forum: Assembly Sep 4th, 2008
Replies: 5
Views: 965
Posted By sDJh
Re: reverse string in a86

I forgot to increase EDX. Just add INC EDX at the end of the loop.

If this doesn't help then try to explain the bug in more detail or write me a PM.
Forum: Assembly Aug 23rd, 2008
Replies: 4
Views: 750
Posted By sDJh
Re: I need halp assembing my program [NASM + NASM - IDE]

What OS are you using? I'm not sure if that stuff is still working under NT (Win 2000 or higher). Than you have to link it directly to an exe (with Link) and execute it.
If so than have a look at the...
Forum: PHP Aug 23rd, 2008
Replies: 1
Views: 173
Posted By sDJh
Re: Email Problem

I never work width EOD but a common problem is (which causes a lot of confusion) that you have to dequote you variables. Try to change your code to something like this:

var$="This is my var...
Forum: PHP Aug 23rd, 2008
Replies: 2
Views: 309
Posted By sDJh
Re: How to use a value from the form??

Change the method in the form-tag to "get". This adds the value and the variablename automatically to the URL you set in "action".
Example:

<form method="get" action="redirect.php">
<input type=text...
Forum: Mac tips 'n' tweaks Aug 22nd, 2008
Replies: 2
Views: 474
Posted By sDJh
Re: Replacing executable file

Thanks indeed. I guess that couldt had been the problem. In the net I've seen a solution that uses SetFile, but it seems to be enough to simpy set the permission to +x.

Thank you, you helped me a...
Forum: Mac tips 'n' tweaks Aug 22nd, 2008
Replies: 2
Views: 474
Posted By sDJh
Replacing executable file

Hello everybody,

I hope this is the right forum to post my question. It's a bit "in-between".

I am about to write an updater for a programme of mine. The updater downloads an update-file from my...
Forum: Game Development Aug 20th, 2008
Replies: 6
Views: 1,080
Posted By sDJh
Re: Cross Console Gaming

If the game's using TCP/IP or UDP for LAN/Internet-connection then it's not a problem at all to combine multiple platforms and consoles. Even the code has not to be different. The only fuss would be...
Forum: Assembly Aug 20th, 2008
Replies: 1
Views: 564
Posted By sDJh
Re: finding modulo of a number in masm

I hope I got it as well, but I'll give it a try:
When dividing a number with DIV then it returns the result in AX and the modulo in DX.

Communicating with a microchip can easily be done via the...
Forum: Assembly Aug 20th, 2008
Replies: 5
Views: 965
Posted By sDJh
Re: reverse string in a86

XOR EDX,EDX
MOV ECX,length
reverse_loop:
MOV AL,[string_remarks+EDX]
MOV [string_reverse+ECX],AL
LOOP reverse_loop


I'm pretty sure that's what you mean. If you have probs with you memory then try...
Forum: PHP Aug 20th, 2008
Replies: 1
Views: 172
Posted By sDJh
Re: presenet day

as simple as this:

<?
//Getting the current day:
$today=date("d");

//String for the dropdown...
$dropstring="<select>";
for($x=1;$x<=31;$x++){
$c="";
Forum: PHP Aug 20th, 2008
Replies: 2
Views: 184
Posted By sDJh
Re: dropdown help

code 1 (The HTML-Form):

<form action="code_2.php" method=post>
<select name="phonenumber">
<option>Nb1</option>
<option>Nb2</option>
...
</select>
<input type=submit>
</form>
Forum: PHP Aug 20th, 2008
Replies: 2
Views: 284
Posted By sDJh
Re: Warning: mysql_fetch_assoc(): supplied argument is not a valid MySQL result resource

It means that you didn't open your DB correctly. I can't tell you exactly as you haven't posted the code which calls the function db_getrows(). Have a look there and make sure that the handle you're...
Forum: Assembly Jul 16th, 2008
Replies: 2
Views: 498
Posted By sDJh
Re: Assembly help

get this book from amazon.com. It's really worth it. I learned assembly with it as well:...
Forum: Assembly Jun 28th, 2008
Replies: 3
Views: 595
Posted By sDJh
Re: ORG Instruction (NASM)

okay.
you have to export the offsets of each var. You can do it with a macro (does NASM hav a direct way to do so?) that does basically:
-> get called at the top of the file with the pointer to the...
Forum: PHP Jun 28th, 2008
Replies: 3
Views: 682
Posted By sDJh
Re: How to use fsockopen

It does depend on the server you are using. I don't know if you can access gmail or hotmail but if you have a server running it should work. At least with my provider.
Forum: PHP Jun 28th, 2008
Replies: 1
Views: 380
Posted By sDJh
Re: How to Put Icon on PHP

Just put the file favicon.ico in the directory of that file.
Forum: PHP Jun 28th, 2008
Replies: 2
Views: 304
Posted By sDJh
Re: uploading photo problem

?????
I don't get your problem. You say you get an error, when you upload more than 1MB and write in your code if ($_POST['MAX_FILE_SIZE'] >= $_FILES['file']['size']) {

By the way: hidden textboxes...
Forum: Mac Rumors and Reports Jun 27th, 2008
Replies: 7
Views: 5,563
Posted By sDJh
Re: Mac Mini

I have a mini and honestly it is just amazingly... well smart.
And no: There aren't any probs with it. It is very, very silent (the first time I started it I didn't even realize that it was running...
Showing results 1 to 40 of 127

 
Forums | Blogs | Tutorials | Code Snippets | Whitepapers | RSS Feeds | Advertising
All times are GMT -4. The time now is 1:12 am.
Newsletter Archive - Sitemap - Privacy Statement - Acceptable Use Policy - Contact Us
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC