199,114 Archived Topics
Remove Filter ![]() | |
HI, I am trying to upload the music mp3 files with php script. but it seems that my server can't upload the large files from above to 2MB. is there is any solution to upload large files. I also try to put following to my .htaccess files, php_value upload_max_filesize 20M … | |
Hi With the following script [CODE] <html> <body> <?php $server = "localhost"; $username= "root"; $password ="mysql"; $connect_mysql=mysql_connect($server,$username,$password); if($connect_mysql) { echo "Connection Established"; $mysql_db=mysql_select_db("mysql"); if($mysql_db) echo "<Br><Br>Connected to database <BR><BR>"; echo "<Table>"; echo "<TR><TH>Employee_ID</TH><TH>Employee_Name</TH></TR>"; echo "<DBQUERY q>select emp_id,emp_name from employee"; echo "<DBROW><TR><TD><? q.emp_id></TD><TD><? q.emp_name></TD></TR> "; echo "</DBQUERY>"; echo "</TR>"; echo "</Table>"; … | |
explain how to pass parameter to thread?? | |
Hi visit [URL="http://servunity.in/old/test/form_classII.php"]http://servunity.in/old/test/form_classII.php[/URL] I need to print that web form and I successfully insert those field into database but I want both function in one submit(click) please help me on this. | |
Hi how do i update a selected column with numbers ? 001 002 003 004 005 and so on when i delete a row shall we say 003 i have then the numbers 001 002 004 005 thats not the problem the problem is when i insert a new image … | |
hi all, i have search form that retrieves data from database. and i have select options. when i choose with only [CODE]select option[/CODE] it can populate data from database. but i want to retrieve data from database with both input tag (by typing into it) and select tag it cannot … | |
I'm having a hard time understanding this. I get what multithreading is- allowing a program to run more than one thread to improve performance, by splitting up some of it's resources. So I'm at the point in my app where I need to use it. I need to upload some … | |
when I... [CODE]double a = 0.00000001; cout<< a <<endl;[/CODE] The computer outputs 1e-07. I want to force the computer to write it as 0.00000001 thanks! ;) | |
the following gets first date of the week [CODE]DECLARE @Year SMALLINT = 2011 ;WITH cteSource(firstdate) AS ( SELECT CONVERT(varchar(50), DATEADD(DAY, 7 * v.Number, o.Origin), 101) AS firstdate FROM ( SELECT DATEADD(DAY, DATEDIFF(DAY, '18991230', STR(@Year, 4, 0) + '0101') / 7 * 7, '18991230') ) AS o(origin) INNER JOIN master.dbo.spt_values AS … | |
Hi I'm trying to read a text file by use a array for an interactive map. In the text file I stored shop names such as: Label2.Tag = "test" Label3.Tag = "House" When I hover over a label it will display the name in another label such as "lblShowName". So … | |
i am using IECAPT.exe for exporting the web page.IECAPT.exe exports it in image format I m getting some problems related to IECAPT.exe.It is working perfectly on all operating system. But when i deploy my ASP.NET application to windows Server 2003 then it is calling IECAPT.exe but exporting blank image with … | |
Hi I am trying to display the records Horizontally from my 3 different table 1. place table - n number of place 2. Item name 3. Item in different place i want to display the above report as in the attachment. please help me to resolve the issue [CODE]<table width="100%" … | |
So I have a program that is supposed to support a small business. I have the work completed and the professor said it was correct but I wanted to go do a little extra. Basically, on the Order screen, you begin to type the name of a customer/supplier/employee into a … | |
[CODE] set datefirst 6 datepart(wk,'2011-01-12') [/CODE] yields 2. I would like to derive 2011-01-08 from this number. please help.thanks in advance. | |
hello all, please i want to ask a question about a size of the charecters i read some where that 2 charecters is ‎32 bit strings‎!!!! isn't 2 charecter is 16 bit? so what is i have problem with?? and how it is computed truly? thanks very much to any … | |
Hi, I'm trying to use a variable to import a text file. Is it possible to change the path and filename below to a variable? I would like to change "L:\GEAM Data.txt" to a variable "fname", which a user previously entered using Application.GetOpenFilename. [CODE]With ActiveSheet.QueryTables.Add _ (Connection:="TEXT;L:\GEAM Data.txt", _ Destination:=Range("A1"))[/CODE] … | |
Hi guys! I am creating a game which include guns and bullets and I created everything. I want to have a shorter code which I am going to create a array of objects which are the bullets. Can someone help me? In VB6 it's possible to create an array of … | |
![]() | Hello my fellow friends. I'm in need of help. I'm just no good with Javascript. What I have is the following... [url]http://vadikom.com/demos/poshytip/#async-simple[/url] Now it works well. But you have to create a new class for EACH toolip on the page and reference it to its class id. WTF? Anyway to … |
I have a php script with a form that insert data in a mysql db and when I click on submit I would like the page to refresh after the insertion, how can I do that? it's a php script that display data from a mysql db, and the submit … | |
Guys,i have to develop a simulator for Merge sort algo in java.I'm familiar with Java.But i have no idea how to do that.Java applet is easy? or it can be done as a Desktop app.My idea is to do as a desktop application.The programme should allow user to input a … | |
Here is the code I am trying to make work. As you can see, the code as it stands will call a javascript window. All of that works well. I now want to add the lines that are commented out, in order to make the window display conditionally. I have … | |
Hi there, I need to change columns to rows and vice-versa. Example: 1001 AA AB AC AD 1002 CC DD EE FF 1003 AA BB CC CC 1004 DD DD DD DD to 1001 1002 1003 1004 AA CC AA DD AB DD BB DD AC EE CC DD AD … | |
Hello! My question concerns software architects that have experience with UML/UTP. [U]Introduction:[/U] We are currently in the start phase of a new project, where documentation for hardware with embedded software is written. I am responsible for the GUI development. As the starting point, a predecessor model is used. Its GUI … | |
Hi, I am writing a code to sort a list of C-strings in a 2-D array. I'm a beginner and it isn't working out. The program crashes every time. After running a bit of testing, I found that the for loop in my sort function is not incrementing the variable … | |
Greetings I have asked by a client who I designed a website layout for if I can build a "restricted access" section to their website. The website is for a church and they want a section for just staff for important forms and documents. I have programmed a php/mysql application … | |
Hello Friends, I want to create our own object oriented programming language using C#. Is it possible?How? I want to know what are the steps used to create the languages. Please guide me. Thanking you. Regards, Shridhar | |
Hi friends, I'm looking for an efficient method to transpose rows and columns from a BIG file. I wrote this code but is very inefficient. In that, I'm closing and opening a file many times. (// #*#) Could anyone help me please? Thanks a lot! [CODE] ifstream testTranspose; testTranspose.open("data.txt"); int … | |
Hello, I am looking for some information about how high level languages communicate with the lower levels of the computer. Hope this makes sense thanks. | |
hey, is there an optimized way to generate primes between 2 limits ? I was recently asked this question in an interview. Obviously, the Brute Force method would be to run a loop between the limits and check if each number has a factot between 2 and square-root of the … | |
what is correlation Exception in java?? | |
I need help on writing a function to validate that a user has entered their full name (so at least two names must exist in the textbox). I'm such a newbie to vb.net | |
I am getting this error microsoft.sqlserver.jdbc.SQLServerException: The incoming tabular data stream (TDS) remote procedure call (RPC) protocol stream is incorrect. Too many parameters were provided in this RPC request. The maximum is 2100. im new to coding stuffs, i know that i am passing morethan 2100 parameter that is why … | |
![]() | I'm trying to set up a simple little rating system for videos on a website. If you push + it adds 1 and if you push - it subtracts 1. I've got it working just fine. However, the way i'm checking to see if you've rated it already is by … |
Hey, I have this line of code... because I dont want to allow things like & or ! or * etc... but I DO want to allow _ and - [CODE]$url = ereg_replace("[^A-Za-z0-9 ]", "", $url);[/CODE] Can anyone help me? Dan | |
Hi...I did some book exercices..i want to ask you are these code right or not? Question1---Write a programme to display a random choices from a set of 3 choices for breakfast.... i wrote this code... public class Exercice3_1 { public static void main(String[] args) { String breakFast = null; int … | |
Hi, I'm in the process of nailing together a small program, the purpose of which is very simple: Monitor a number of various network locations for the existence of some files. when they spring into existence, check to see if someone is using the file and when it accessible, light … | |
Hi! Could Someone please explain me the difference between[I][B] "Pass By Value"[/B][/I] & [B][I]"Pass By Reference"[/I][/B] In Java? I can't understand it clearly. Please give some [I][B][COLOR="Green"]easy example[/COLOR][/B][/I] and little [COLOR="Red"][B][I]description[/I][/B][/COLOR]? Any help would be appreciated. Thanks.:-/ | |
which tomcat version is application server .? how to use that .. | |
[B][COLOR="red"][COLOR="Red"]hello,.. I want to know how to show date on Sunday, for example, I entered into by date In other words I chose on Sunday, for example, for a period of one month from the start date I entered into For example, when I say on Sunday from the beginning … | |
Hello dear friends this is my first question and i am new to vb.net and programming i am trying to build the simple xbase calculation like if i had 2 eggs value 2 dolars so 3 eags value calculated by program i did this code but the answer never show … | |
Hi all been working on this for a couple of days. I want to upload 4 image names to the mysql database and upload the images to a folder on the local server. I also want to display my images that goes with the text data. So far I can … | |
Hi! All.. It is asked that Can a C++ programme be converted to an i-phone app?, by means of any converter or something like that. | |
hi... am develop simulator project...using java (java run time environment) for that can use applet method or java gui frame method.. suggest me.. | |
Play any Sound File. Just add a reference to Microsoft.DirectX.AudioVideoPlayback(COM) | |
I wrote the following code for sorting an array (ARR1) in ascending order. Please check if its correct. Thanks. Is there any assembler for windows that I can use to run these codes? [CODE].Program to sort ARRAY into ascending order. SORT START 0 OUTER LDX INDEX LDS ARR1,X LDX #0 … | |
I restart a project of mine which use mysql, I used xampp in the past to test the code on the mysql server so I update to lasted version but a piece of code that is identical and was working, I now get an error in [U]the class check in … | |
I am very new to php and mysql. I have read and re-read many forum posts on this subject, but I just cannot figure this out. I have been at it for almost two weeks now. This is my hope: Load images and captions from a database into an html … | |
Hi all, I want to add an amend functionality to my system. Therefore i need retrieve data from 2 different tables and display it in a single form. [B]account_details [/B]( [B][U]account_number[/U][/B], full_name,____) [B]account[/B] ( [B][U]account_number[/U][/B], name_with_initials,____) When i try to retrieve data from these 2 tables,output comes as an empty … | |
I seem to get this error every-time i create a web-browser with tabs. [CODE]Overload resolution failed because no accessible 'Int' accepts this number of arguments.[/CODE] Here is my code: [CODE]<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _ Partial Class Form6 Inherits System.Windows.Forms.Form 'Form overrides dispose to clean up the component list. <System.Diagnostics.DebuggerNonUserCode()> _ Protected Overrides Sub … | |
Im really bad at programming just started recently and i was wondering how would you combine these for loops since they look the same except for the paramaters this program makes stairs. Thanks a bunch [code]import java.util.Scanner; public class example { public static final int SUB_HEIGHT = 4; public static … |
The End.