User Profile

Collapse

Profile Sidebar

Collapse
Ajay Bhalala
Ajay Bhalala
Last Activity: Apr 2 '16, 04:03 PM
Joined: Nov 12 '14
Location: India
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Ajay Bhalala
    replied to File can not be moved in Upload folder
    in PHP
    Hello,
    Thanks for your reply

    error reporting is already on.

    But there is no any message display.
    See more | Go to post

    Leave a comment:


  • Ajay Bhalala
    started a topic File can not be moved in Upload folder
    in PHP

    File can not be moved in Upload folder

    Hello,

    I have create a registration form in the Following path

    Path : C:\Program Files (x86)\EasyPHP 2.0b1\www\Conne ctivity

    In the folder "Connectivi ty", my php file "Registration.p hp" is created. And there is One another folder "Upload" in this folder.

    Here I have create 3 file
    Connectivity.ph p - For establish connection to database
    Insert.php - For Insert...
    See more | Go to post

  • Ajay Bhalala
    replied to How to validate checkbox???
    in PHP
    Hi,

    Thanks for your reply.

    Its work. Thanks you for your help.
    See more | Go to post

    Leave a comment:


  • Ajay Bhalala
    replied to How to validate checkbox???
    in PHP
    Hello dormilich,
    Thank you for your reply.

    In short, I want that the user must have to select at-least one checkbox.

    If user does not select any one checkbox, then I want to give the message 'Please Select Skill'.

    And I want to do this using Javascript

    How can this be done?????
    See more | Go to post

    Leave a comment:


  • Ajay Bhalala
    started a topic How to validate checkbox???
    in PHP

    How to validate checkbox???

    Hi,

    I have a registration form. I want to validate this form in php using javascript.

    Here is my code of registration form :

    Code:
    <html>
    <head>
    
    <script type="text/javascript" language="javascript">
    function validate(frm)
    {
    	with(frm)
    	{
    		if(username.value=="")
    		{
    			alert("Please Enter Username!");
    ...
    See more | Go to post

  • Ajay Bhalala
    replied to How to move all apps???
    Thanks for your reply and your very useful infromation
    See more | Go to post

    Leave a comment:


  • Ajay Bhalala
    replied to How to move all apps???
    Hey, Thank you so much for your reply and your information. Its very useful.
    See more | Go to post

    Leave a comment:


  • Ajay Bhalala
    started a topic How to move all apps???

    How to move all apps???

    Hi all,

    I want to move the all apps to the SD card which are stored on the Phone memory.

    I have tried, some apps can be moved but remaining apps can't be moved to the SD Card. The option "Move to SD Card" is disabled. Then how can I move the remaining apps to the SD Card????

    Please help
    See more | Go to post

  • Ajay Bhalala
    replied to What is going on here?
    in PHP
    Hi,

    You can change the port to port81 for your php from the configuration file.

    or You can use EasyPHP for your php coding.

    or you can also use the DreamWeaver software which is very useful for coding. It helps to save our time. Its work same like the Visual Studio.

    You can know more about this from the following link :
    https://en.wikipedia.org/wiki/Adobe_Dreamweaver...
    See more | Go to post
    Last edited by zmbd; Dec 7 '15, 02:38 PM. Reason: [z{please do not link to third-party sites for software.}]

    Leave a comment:


  • Thanks for your reply,

    In the past I have know how multiply the matrix, but now I have forgot the method.
    See more | Go to post

    Leave a comment:


  • Ajay Bhalala
    started a topic Multiplication of 2 matrix using 2D array in php
    in PHP

    Multiplication of 2 matrix using 2D array in php

    Hello all,

    I want to make a script for multiplication of 2 matrix using 2D array in php.

    Can anyone provide the code or program for it.

    or can anyone give the hint about this?

    Please help me.
    See more | Go to post

  • Ajay Bhalala
    started a topic Exception Handling in Java
    in Java

    Exception Handling in Java

    Hello,

    I have create the program for exception handling using nested try in java

    Here is my program :

    Code:
    class nestedtry
    {
    	public static void main(String args[])
    	{
    		try
    		{
    			int a,b;
    			a=5;
    			b=0;
    			try
    			{
    				int a[];
    				a=new int[3];
    				for(int i=0;i<=4;i++)
    				{
    					a[i]=10;
    				}
    ...
    See more | Go to post

  • Ajay Bhalala
    replied to Interface in java
    in Java
    Hello,

    Thanks for solving my error.

    You are absolutely right,
    Now I will remember to give the filename same as the classname as you suggest.

    Your all suggestions and information are very useful for me and every beginners...

    Thanks for providing this very useful information with the solution of my problem.
    See more | Go to post

    Leave a comment:


  • Thank you so much for solving my error and also for your great and very useful suggestion.

    Your suggestion is really very useful

    Thank You soooooooo much.
    See more | Go to post

    Leave a comment:


  • Ajay Bhalala
    started a topic Interface in java
    in Java

    Interface in java

    Hello,

    Please help me to solve this error

    I have create one interface. and then I have declare one method in it.

    Then I have implement the interface and define the method in another class.

    After that I have call the method from main.

    My program is as follows :

    Code:
    interface minte
    {
    	void prnt();
    }
    class abs implements minte
    {
    	void
    ...
    See more | Go to post

  • Error occurred in program of multiple inheritance in java

    Hi all,

    I have create a program of multiple inheritance in java

    My file name is 11.java
    Here is my program :

    Code:
    class abc
    {
    	int a,b;
    	abc()
    	{
    		a=b=10;
    	}
    	abc(int x)
    	{
    		a=b=x;
    	}
    }
    class def extends abc
    {
    	int d,e,f;
    	def()
    	{
    		d=e=f=15;
    	}
    	def(int m,int n,int o)
    	{
    ...
    See more | Go to post

  • Ajay Bhalala
    replied to How to generate the series?
    in Java
    Hi Luuk,

    Thank you so much for your reply.

    You have really realeased my tantion about this series. Thank you so much.
    See more | Go to post

    Leave a comment:


  • Ajay Bhalala
    started a topic How to generate the series?
    in Java

    How to generate the series?

    Hello all,

    I want to generate the following series in the java

    1!-2²+3!-4²+5!-6².....

    How can I generate this series in Java?
    See more | Go to post

  • Ajay Bhalala
    replied to Need help to solve the error
    Please anyone suggest me how to solve this error!!!
    See more | Go to post

    Leave a comment:


  • Ajay Bhalala
    started a topic Need help to solve the error

    Need help to solve the error

    Hello all,

    I have create one application of RangeValidator Control in asp.net

    Here my HTML view :
    Code:
    <%@ Page Language="VB" AutoEventWireup="false" CodeFile="RangeValidator_Control.aspx.vb" Inherits="RangeValidator_Control" %>
    
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    ...
    See more | Go to post
No activity results to display
Show More
Working...