- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 6
- Posts with Upvotes
- 6
- Upvoting Members
- 5
- Downvotes Received
- 25
- Posts with Downvotes
- 20
- Downvoting Members
- 11
92 Posted Topics
Re: 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 … | |
Re: try to work with book "HOW TO PROGRAM IN JAVA THIRD EDITION BY DEITEL AND DEITEL" for all types programmers | |
Re: 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 … | |
guys i wanna known that can we do chip programming in java. | |
Re: here is the way <input type="password" placeholder="enter password" /> | |
Re: 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 … | |
Re: 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] | |
Re: try it with jQuery completlety its better than using JS | |
Re: A great tutorail for you as per your Question.Check it out [URL="http://wp.me/p1Wsov-c"]http://wp.me/p1Wsov-c[/URL] | |
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] … | |
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 … | |
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 … | |
Re: 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 … | |
Re: 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 … | |
Re: 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 … | |
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 … | |
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 … | |
Re: 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 … | |
Re: 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 | |
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 … ![]() | |
Re: 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 … ![]() | |
Re: 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"); … | |
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 … | |
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 … | |
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 … | |
Re: 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; … | |
Re: 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. | |
Re: 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 … | |
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 … | |
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 … | |
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 … | |
![]() | Re: 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(); … ![]() |
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"> … | |
Re: so you want to upload image just or also want to view it | |
how can i get the ip address of the user on my email while the user clicks the submit button anyone could help me | |
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 … | |
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 … | |
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 … | |
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] | |
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 | |
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 … | |
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" … | |
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 ![]() | |
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 … | |
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 ![]() | |
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. ![]() | |
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 | |
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.. | |
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... | |
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 … ![]() |
The End.