Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
25% Quality Score
Upvotes Received
6
Posts with Upvotes
6
Upvoting Members
5
Downvotes Received
25
Posts with Downvotes
20
Downvoting Members
11
10 Commented Posts
0 Endorsements
Ranked #1K

92 Posted Topics

Member Avatar for rpv_sen

i had done this task a month ago.I was given was to import csv file to mysql DB. [B]Step 1[/B] Easily and good approach is to save the csv file as xml doc as option is present to save it as xml doc. [B]Step 2[/B] Then import the xml doc …

Member Avatar for bhuvi_2
0
9K
Member Avatar for ~s.o.s~

try to work with book "HOW TO PROGRAM IN JAVA THIRD EDITION BY DEITEL AND DEITEL" for all types programmers

Member Avatar for ~s.o.s~
46
6K
Member Avatar for Techboy52

My friend i think you cannot display output using JOptionPane method while you use scanner class.using scanner class(console input/output) you should use system.out.print().system is a class and print is a method.further if you use JOption method for your input then you can use either system.out.print() or dialog box.if i am …

Member Avatar for stultuske
0
4K
Member Avatar for extemer
Member Avatar for NicAx64
0
165
Member Avatar for Mona Ali
Member Avatar for raviragarwal292
0
2K
Member Avatar for amit.hak50

class extemer { public static void main(String args[]) { int c=1; int j=1; for(int i=1;i<=10;i++) { for(int k=1;k<=c;k++){ System.out.print(j); System.out.print(" "); j++; } System.out.println(); c+=1; }} } for(int i=0;i<=10;i++) The first loop i used because for printing ten lines. for(k=1;k<=c;k++) The second loop i used is to print number in …

Member Avatar for JamesCherrill
0
836
Member Avatar for madhub2v

i am also working on the snake game.i am taking help from this site.check it out its in applet [url]http://www.javacooperation.gmxhome.de/indexEng.html[/url]

Member Avatar for Ezzaral
0
2K
Member Avatar for alex8206
Member Avatar for vlowe

A great tutorail for you as per your Question.Check it out [URL="http://wp.me/p1Wsov-c"]http://wp.me/p1Wsov-c[/URL]

Member Avatar for pritaeas
0
191
Member Avatar for extemer

hello friends may peace on you ! I have a little problem in my code.i want display the fetch value from db in a textfield after pressing load button.i am using ajax post method for it but cant figure it out what the problem.please help me ! Thanks, [B]Index.php[/B] [CODE] …

Member Avatar for ddymacek
0
212
Member Avatar for extemer

Hello guys i learn something new so i thought to share it with you people.This tutorial is about when you search some data in a search bar and as you enter any key word e.g 'a' so it start looking for keywords starting with 'a' and highlight it.In this way …

Member Avatar for Taywin
0
167
Member Avatar for extemer

Below code in bold is here i got the problem please help.the problem is while i submit the form a div appear after pressing submit button that data is submitted the div is appearing perfectly fine but the problem is after i inserted this code that is bold below for …

Member Avatar for Airshow
0
186
Member Avatar for n3xtgen

hello friend i have a very simple and easily JQ plugin for you.All you have to do is to include it on your page and change as you want and only changing the textfield id name are required and as much textfield you want to validate you can do this …

Member Avatar for extemer
0
218
Member Avatar for xtinawp

my friend when i started i got the same prob as you do.Now follow these steps. 1.when you have completed you code. 2.go to file and open my computer. 3.after that open c drive. 4.Then open program files folder in C. 5.open the java folder in program files. 6.now if …

Member Avatar for peter_budo
0
1K
Member Avatar for nadeemansari

hello friends readonly attribute of the input type can never be set empty so you can't leave it empty you made a mistake here and if you set it empty then you cant write it there anything so condition will always be false for the validaion i have done it …

Member Avatar for nadeemansari
0
5K
Member Avatar for extemer

Hello guys i learn something new so i thought to share it with you people.This tutorial is about when you search some data in a search bar and as you enter any key word e.g 'a' so it start looking for keywords starting with 'a' and highlight it.In this way …

0
90
Member Avatar for extemer

can some one explain me that line by line [CODE]$("#amount").keydown(function(event) { // Allow only backspace and delete if ( event.keyCode == 46 || event.keyCode == 8 ) { // let it happen, don't do anything } else { // Ensure that it is a number and stop the keypress if …

Member Avatar for MartinRinehart
0
111
Member Avatar for komanche

i have rewrite your code and made it little simple for by using JQ.I have use while loop in the php code for getting the username and password from the DB. [CODE] <?php // require_once("../includes/ikobe.php"); if (isset($_POST['username']) &&isset($_POST['password'])) { $con = mysql_connect("localhost","root",""); $db_selected = mysql_select_db("check", $con); $username = $_POST['username']; $password …

Member Avatar for karthik_ppts
0
787
Member Avatar for mlhazan

i can help you if you let me know your email i can send you the code and files of pagination which i made and then you can change it your ways

Member Avatar for mlhazan
0
324
Member Avatar for extemer

hello friends i am upto software for the school management system and i have completed student info form and class and subject form.now i am stuck in fee section i want to use head and subhead concept that is based on charts of acount.can you people clear me that thing …

Member Avatar for diafol
0
101
Member Avatar for Rhamises

First of all use header at the top before html tag because it work fine then and use error_reporting at last when you get the code perfectly in working condition becuase it hides your all error and then you wont known where the problem is.try this code and answer me …

Member Avatar for diafol
0
159
Member Avatar for gotboots

i have done this with jquery because its a quick and easily approach and very much same to JS.hope you like this let me known [CODE] <html> <head> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script> <script type="text/javascript"> $(document).ready(function(){ $('#submit').click(function(){ var listValue = $('#list').val(); var rrpValue = $('#rrp').val(); if(parseInt(listValue)>parseInt(rrpValue)) { alert("List value greater than rrp"); …

Member Avatar for extemer
0
2K
Member Avatar for extemer

hi i want to validate my id field that if someone enter data other than id in the id field it show message that its not id.i have little bit of logic to validate but i am not getting the point that how to validate that it only accept numeric …

Member Avatar for ddymacek
0
107
Member Avatar for extemer

HI guys i have a little problem while i post the data that is class_id and subject_id to my db with it extra field is generated having zero in class_id and subject_id e.g below [B]Edit Delete 0 0 Edit Delete 315 1[/B] beside the original ids.here is my code below …

Member Avatar for cgull
0
130
Member Avatar for extemer

what i am trying to do is when i click the div it decreases to width=100px and when i click it again it changes it to original size but i am getting the problem in the second part where i want to re size it to original size i known …

Member Avatar for Airshow
0
149
Member Avatar for fire eaters

i have done it in two ways for you [B]first[/B] [CODE] <html> <head> </head> <script type="text/javascript" src="js/jquery.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("#testing").click(function(){ if($("#testing").css('width') == ('800px')) { $("#testing").animate({'width':'100px'}); var resize = null; } else if(resize == null) { $("#testing").animate({'width':'800px'}); } }); }); </script> <style type="text/css"> #testing{ border:1px solid #00F; cursor: pointer; height:100px; …

Member Avatar for extemer
0
112
Member Avatar for William Blore

i will suggestion you to switch to JQUERY because it better,fast and easy to do what ever you want if want it in JQUERY i can tell you how.

Member Avatar for extemer
0
122
Member Avatar for authi

here i got the anz to your all question with correction of you program so go through it and try to understand... import javax.swing.*; import java.text.DecimalFormat; class test { public static double form1,form3,form4; public static int form2; test() { form1=0; form2=0; form3=0; form4=0; }} class method { public static void …

Member Avatar for JamesCherrill
0
4K
Member Avatar for extemer

hello guys i am stuck in a small but horrible problem.i am redirect page to itself using [ICODE]$_server[''PHH_SELF][/ICODE] method but the problem is that i apply the insert query at the top of my html page but it shows me that you are not connect to the DB. [CODE] <?php …

Member Avatar for sv3tli0
0
151
Member Avatar for extemer

hello guys...i have a class table in which there are two fields [B]class_id[/B] and [B]class_name[/B] and a student form in which there is a text field in which user will mention the student class and then hit add.this will retrieve class_id from class table instead of class name into student …

Member Avatar for extemer
0
173
Member Avatar for extemer

hello friend...want to ask something after completing my [B]student form[/B] now i am up to [B]classes table[/B] so i make a table in DB which consist of two fields [B]'class_id'[/B] and [B]'class_name'[/B].[B]class_id [/B]is auto_incre.so i thought to add a field in the same [B]student form [/B]in which the user will …

Member Avatar for extemer
0
91
Member Avatar for Zagga

you want to say that if you have multiple paragraph then how would you apply JQ toggle on it.Is this what you asking for? [CODE] <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Untitled Document</title> <script src="jquery.js"></script> <script type='text/javascript'> $(document).ready(function(){ $('p').hide(); $("#new").show(); …

Member Avatar for Zagga
0
200
Member Avatar for extemer

HELLO guys May peace on you...i am stuck in a problem.i had a loading image that appears while i submit the form but the problem is that my page is not redirect to next page.here is my code please help me.... [ICODE] <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> …

Member Avatar for Airshow
0
91
Member Avatar for rahulvramesh
Member Avatar for ko ko
0
276
Member Avatar for extemer

how can i get the ip address of the user on my email while the user clicks the submit button anyone could help me

Member Avatar for anandgodar
0
689
Member Avatar for extemer

hello friends i want to add confirmation box to my delete option in the pagination code so when the user want to delete the record before deleting it may as for the option yes or no...below is my code and the code in bold is the delete code.... [CODE] <?php …

Member Avatar for Airshow
0
179
Member Avatar for extemer

hello friends i want to add confirmation box to my delete option in the pagination code so when the user want to delete the record before deleting it may as for the option yes or no...below is my code and the code in bold is the delete code.... <?php mysql_connect("localhost","root","")or …

Member Avatar for ddymacek
0
178
Member Avatar for extemer

how to popup submit button while selecting item from the dropdown list. i had completed the task of displaying textfield while selecting item from the dropdown list but unable to figure out how to popup the submit button with textfield while an item is selected from the dropdown list...please help …

Member Avatar for Amr87
0
552
Member Avatar for extemer

how i will change datepicker format to mm-dd-yy i have change it but while i post it post 00-00-00 here is my code please some one help me.... [CODE] <script> $(document).ready(function() { $("#admission").datepicker({dateFormat: 'mm-dd-yy'}); // String date = dateFormat.toString('dd-mm-yy') }); </script> [/CODE]

Member Avatar for almostbob
0
55
Member Avatar for extemer

hi i want to move my image.i have selected a image of key and i want it to move like in x and y rotation e.g in the direction we open the key i have tryed it but not working...help please

Member Avatar for WebStudio Pros
0
67
Member Avatar for extemer

well guys hello i am bit confuse on my way...i up to a project for my university and designing a database system for a school...the problem is i am uploading images and and i set the image type as blob in mysql db but one of friend suggest me that …

Member Avatar for debasisdas
0
97
Member Avatar for extemer

hi guys i am trying to upload an image but my code is not upload image size higher than 400bytes please help me i tried but many thing but figure it out. [CODE] <html> <head> </head> <body> <form action="test.php" method="post" enctype="multipart/form-data" > File: <input type="file" name="image" /> <input type="submit" value="Upload" …

Member Avatar for IIM
0
179
Member Avatar for extemer

hello guys i have designed a student form which have 3tabs e.g General,parental info,Miscellaneous and i want to add breadcrumbs to that can some suggest me how to do i being trying it hard but not getting it right

Member Avatar for iamthwee
0
60
Member Avatar for extemer

hello guys i am up to a task. i want to add a functionality to my form that when the city in given in the address field it can be viewed in google map application.For this i had found design a image so that when location is specified in the …

Member Avatar for extemer
0
143
Member Avatar for extemer

hi guys i want to add a plus sign or image instead of textfield to brows my file.is there any way to perform this functionalty

Member Avatar for Zagga
0
69
Member Avatar for extemer

Ok, I have a student form which will be filled by operator. I want a small image to be displayed in a frame in the form when the operator brows the image each time he/she fill new student form. Guys my JS isn't brilliant.

Member Avatar for stbuchok
0
86
Member Avatar for extemer

i guys i want to add a image tag on my database so that while filling student form.they can also add image of student by selecting that image from the computer.how can i do this

Member Avatar for karthik_ppts
0
100
Member Avatar for extemer

hello guys i am making student form for my database and i want to add a image tag so that person can brows the student photo from the computer...how can i do this please help me out..

Member Avatar for krabz01
0
116
Member Avatar for extemer

hello guys i got a problem that i applied clearabletextfield plugin on my textfield but its css is not been right.i set it on multi-fields but its css is not been set me...

0
81
Member Avatar for extemer

hello guys i want a drop down menu for the month,year and days in case of DATE OF BIRTH. I HAVE done this thing with jquery datepicker but i want a dropdown menu for it..please help me here is my code i want to use drop down menu but figuring …

Member Avatar for stbuchok
0
76

The End.