English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

Programming & Design - December 2007

[Selected]: All categories Computers & Internet Programming & Design

how can write program that can find running time of bubble sort, insertion sort, heap sort, merge sort and quick sort?

2007-12-16 17:32:12 · 4 answers · asked by Abdulaziz 1

The dynamic web site systems feature Administration Tools to allow you to change the database data as required Online through web pages which allow you to ADD, UPDATE and DELETE database records as required. There is also a file/image upload facility.

2007-12-16 17:27:38 · 2 answers · asked by sunny 1

What are the specific university courses that u need to take in university to b a computer programmer?

2007-12-16 14:27:24 · 4 answers · asked by Anonymous

I want to make one for free....anyone know where I need to go to do so??

2007-12-16 12:10:49 · 4 answers · asked by 2

can anyone tell me what i can put in the input fields to get administration options... an sql injection ... with these terms... of action...
========== its php and $username and $password are the inputs...
if ($username && $password){
$query = sprintf("SELECT * FROM login WHERE username = '$username' and password = '$password'");
$result = mysql_query($query);
$account = mysql_fetch_array($result);
}
if ($account){

$_SESSION['id'] = $account['id'];
header("location:admin.php");
exit;} else { echo " u are no admin.... ";}
=======

2007-12-16 09:55:11 · 2 answers · asked by truepal20032001 2

I am an expert HTML coder but I don,t know how to create a web page in languages other than English

2007-12-16 09:42:38 · 3 answers · asked by ash 2

hello
i'm 14 years old i want to be a programmer i know some "html"
i want to go to a school to learn programing,so what is the first programing languege i have to start with is it visual basic?
or basic or qiuck basic or something else ????? please give me ur advice.



MAS ONLINE THANK'S

2007-12-16 09:18:41 · 3 answers · asked by MAS ONLINE 2

I have a software product that I am launching, it also has an accompanying website but I need somewhere to host the website while I am building and testing it...would my home PC be sufficient I need to host my website on it and use PHP and MySQL. What are your views on what I should do?

2007-12-16 08:36:36 · 6 answers · asked by SM 3

thanks?

2007-12-16 08:13:58 · 3 answers · asked by steven25t 7

I have a website I created with MS Front Page that I sell products on. I have a generic Paypal shopping cart and I want to upgrade to a good professional cart with lots of features and add some form of affiliate features and overall upgrade the site. Where can I find someone that can go over and add these things for a decent rate? I want to get my site fixed up and professional. Thanks for any assistance.

2007-12-16 06:08:47 · 1 answers · asked by flafuncop 2

is limewire legal?

2007-12-16 05:35:26 · 15 answers · asked by Anonymous

At the moment I have a piece of script for a button:

onmouseover="style.backgroundColor='<%=background3%>';"

I to change this for a background image - I pressume I would need to use something like:

onmouseover="style.backgroundImage='url(image/button.gif)' ;"

but of course that does'nt work does anyone know what I need to do ?

Many Thanks

2007-12-16 05:24:50 · 2 answers · asked by mrajsmith2000 1

I'm trying to make a drop down menu using dreamweaver. How do I do that? I have done it before but forgot how.

2007-12-16 04:55:44 · 2 answers · asked by Water Garden Vista 6

I need some advice please on adding an editable box for latest news on my home page. Basically it needs to be change by someone who has no html ability let alone Frontpage or Dreamweaver .
I guess its like a mini CMS.

Are there any scripts etc that are available ?

Cheers

2007-12-16 04:17:20 · 3 answers · asked by mrajsmith2000 1

where can i get a free Domain name
i have a website on freewebs
and i want it to be a .com
where can i go to get a free
Domain name

2007-12-16 03:37:52 · 8 answers · asked by RandiRockStar 1

$allowed_filetypes = array('.jpg','.gif','.bmp','.png','.pjpeg');
$max_filesize = 524288;
$upload_path = './images/';
$filename = $_FILES['pic']['name'];
$ext = substr($filename, strpos($filename,'.'), strlen($filename)-1);
if(!in_array($ext,$allowed_filetypes))
die('The file type is not allowed.');
if(filesize($_FILES['pic']['tmp_name']) > $max_filesize)
die('The file is too large.');
if(!is_writable($upload_path))
die('You cannot upload to the specified directory.');
if(move_uploaded_file($_FILES['pic']['tmp_name'],$upload_path . $filename))
echo 'Success, view the file here';
else
echo 'There was an error. Please try again.';
$prod = $_GET['id'];
$path = . $upload_path . $filename .
mysql_select_db("products", $con);
mysql_query("INSERT INTO prods SET path='$path' WHERE id='$prod'");
mysql_close

If I leave out the sql query and all of that, the script works fine. But when I add the sql parts, it doesn't. Help?

2007-12-16 02:27:04 · 3 answers · asked by thepoor666 1

A) Impact Printing
B) Source Data Automation
C) Computer Output Microfilm
D) Bar Codes

I think it's "D" but I have to be certain.

2007-12-16 00:37:51 · 10 answers · asked by Anonymous

I made a hundred-page PowerPoint presentation of children songs. I placed the background music of each song in the corresponding slide in presentation. My problem is, when I burned my presentation into a CD, the songs' mp3 audios wont play when I tried to click the "horn" icon.

I have seen many PowerPoint presentations in the internet with all audios intact. I learned that as long as the file source of the audio is accessible, the audio will play well, but I have tried everything but mine doesn't work. There must be something wrong along the way.

I have seen PowerPoint presentations in CD's too, and with all the audio in perfect synchronization.

I learned some synchronization tips before. My sole problem is how to burn my presentations into a CD with all the audios embedded.

Thank you so much! ^_^

2007-12-15 23:28:11 · 5 answers · asked by planetypus 2

I have made a slideshow and saved it on to a recordable dvd. The disc works on the computer I made it on (which has Windows Vista) but when I put it on my PC or dvd player it is saying the disc is empty!!!

Is there any way I can get the other players to play my disc?

2007-12-15 23:26:45 · 7 answers · asked by June 2

When it comes to Java networking, I'm pretty clueless. I am aware of ServerSocket and Socket.
I can get two instances of my program running, and one be the server and the other the client. The one with the server I run a client off of as well, and the one that is the client I only run an instance of the client. I am able to successfully connect, but the second I try and read information sent from the server, it locks up. This happens when I use the "read()" and "readLine()" methods.
I am trying to get basic networking just to start--a communication between two JTextAreas between two different users. Basically, I'm trying to get a chat program working for the time being, and as soon as that's working, I'm confident I can get the competitive functionality of two games over the network running smoothly.

Do you know of any sources of a basic Server/Client program with two JTextAreas or any good referances to basic Java networking? Or do you have any suggestions to my issue?

2007-12-15 23:19:14 · 2 answers · asked by Jean-Francois 5

My professor assigned me an assignment to get history on the following topix:

1: binary search
2:sequential search
3:bubble sort
4:selection sort
5:Quick sort
6:merge sort

i have to submit my assignment on Wednesday
Kindly help me or recommend me any site..
Thanx in advance... :)

2007-12-15 21:39:39 · 1 answers · asked by student of honorZ 2

how can i learn more about assimbly programming language,and what kind of thing can i do with this programming language.

2007-12-15 20:46:34 · 3 answers · asked by yg.mms2 1

I have a university book that a friend of mine gave me so I can learn Java. It's a great book and I like it a lot. I have also used Visual Basic.Net Express Edition a year ago and found it ok and the Microsoft tutorials were ok too. I'm not a programmer, I don't know what I really want to do, I just want to make some simple GUI programs for Windows so that I can see what I can do with the language. Like make a simple program that asks you questions.

I have used python but I don't like it as much. I'm either going to pick one of these two. I can't always stop like this I have to just study one language at a time. I'm in chapter two of my book which is very long and it seems to be going good so far. I just want to know if VB.net would be better cause I just want to learn programming quick and I want to learn one that's easy.

For now this will be a hobby so I want it to be something I can do easily. Then I'll see if I really want to do this as a career cause I have considered it before.

2007-12-15 19:01:53 · 2 answers · asked by h3xlas3r 1

My image will appear on my page when I open it from my computer but it won't appear on the page when I open it online.

2007-12-15 17:36:37 · 4 answers · asked by Corey L 2

I have all 24 images I want to use in a bitmap. format. How do i turn them into a gif animation? I use a free version of IrfanView... What I have been doing is Dragging the folder I have all the images in, right into IrfanView. Then I'm stuck on what to do next.

2007-12-15 14:37:48 · 3 answers · asked by john k 1

in idoit language

2007-12-15 10:43:09 · 9 answers · asked by johnmajka66 1

I want to be able to make an animated image that is a move file...Kind of self explanatory I hope

2007-12-15 06:41:10 · 2 answers · asked by Feezy 2

i use aim and my icons need to be no more than 64 and no less than 15 in demension and under 7 g i think. plz help websites or what to serch or something. thnkx in advance

2007-12-15 06:19:04 · 10 answers · asked by Anonymous

2007-12-15 05:41:14 · 3 answers · asked by tony_mgl 2

fedest.com, questions and answers