User Profile

Collapse

Profile Sidebar

Collapse
Geethu03
Geethu03
Last Activity: Oct 21 '08, 09:10 AM
Joined: Dec 27 '06
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Geethu03
    replied to get hidden array values
    in PHP
    Thank you very much.

    i got the result. but the result is print in report format like one by one. i am using a code.
    Code:
     
    $date[i] = print_r($_POST['Date'], true);  	 
    	echo "<td>".$date[i]."</td>";  	
     $name[i] = print_r($_POST['Name'], true);  	
    	echo "<td>".$name[i]."</td>";
    in the above coding i got the result...
    See more | Go to post

    Leave a comment:


  • Geethu03
    replied to get hidden array values
    in PHP
    thank you for ur reply.

    i am not understand how can i get the value as 123 ie($_POST['data'] = array('1', '2', '3');) i don't know what value is in the data. i am using a jsp tags to get the array value for data field. if i know the values of data your solution is correct but i don't know the value of data[] field. please give me little bit clear.

    thanks...
    See more | Go to post

    Leave a comment:


  • Geethu03
    started a topic get hidden array values
    in PHP

    get hidden array values

    Hi
    i have a array values in hidden format
    [HTML]<form name="form2" method="post" action="test.ph p">
    <input type="hidden" name="date_val[]" value="<%= date[0] %>">
    <input type="hidden" name="name_val[]" value="<%= name[0] %>"></form>[/HTML]

    my question is how can i get the array...
    See more | Go to post

  • Geethu03
    replied to print the loop value
    in PHP
    i want to print the loop values in table format. In first row i want to print the date and forward in the last row process.

    how can i do it

    Thanks...
    See more | Go to post

    Leave a comment:


  • Geethu03
    started a topic print the loop value
    in PHP

    print the loop value

    Hi
    i got the array values from the html page using foreach. In this i can get multiple array values to print in the table.

    the values are

    Date Forward Process

    12/9/8008 5 3
    15/09/2008 7 4


    For Date I am using this

    Code:
    foreach ($_POST['CreatedDate'] as $key => $value) {
    	echo $value;
    	 }
    the same as i use  forward and Process
    ...
    See more | Go to post
    Last edited by Markus; Oct 15 '08, 12:21 PM. Reason: added # tags

  • Geethu03
    started a topic select file using Stored Procedure

    select file using Stored Procedure

    Hi
    I had a doubt in Mysql Stored procedure. i need to read a text file (that is stored in mysql database) using the Stored procedure. i know little bit about the Stored procedure but i am not able to read a file.
    Code:
    import java.sql.*;  
    import java.io.*;  
    import java.lang.*; 
    import java.util.StringTokenizer; 
         public class test {     
           public static void main(String[] args) {
    ...
    See more | Go to post

  • Disable the middle mouse button/ wheel mouse button

    Hi
    I want to disable the Middle or Wheel mouse button by using the javascript for the browser FireFox and Opera. Give any idea to do this.

    Thanks in Advance.
    Geethu.
    See more | Go to post

  • Geethu03
    replied to create toolbar
    in Java
    Hi

    i don't know about the JToolBar. how can i use this, Pls give details of the JToolBar....
    See more | Go to post

    Leave a comment:


  • Geethu03
    replied to Adding 2 Number In Java
    in Java
    Use this i think it will help you. Pls follow this code
    Code:
    import java.io.*;
    public class cal{
      public static void main(String arg[]) throws IOException {
    
    int a=0;
    int b=0;
    int c=0;
    
    DataInputStream ds = new DataInputStream(System.in());
    a =Integer.parseInt(ds.readLine());
    b =Integer.parseInt(ds.readLine());
    c =a+b;
    system.out.println(c);
    }
    ...
    See more | Go to post

    Leave a comment:


  • Geethu03
    started a topic create toolbar
    in Java

    create toolbar

    Hi
    I want to create a browser toolbar using java. Can anybody give the idea to create my own Toolbar.

    Advance thankyou for your suggestions.

    Geethu.
    See more | Go to post

  • Geethu03
    replied to Mysql List
    Hi
    one more question to solve my problem.In system folder view we have the option to show the file name in asc and desc and the same way show the file size,date modified. in the same way i want to print the above status in my application. but i don't have any idea for that so give me a suggestion how can i do that.

    Thankyou very much
    Geethu...
    See more | Go to post

    Leave a comment:


  • Geethu03
    replied to Mysql List
    I solved that problem.

    Thankyou Very much for your Kindly help....
    See more | Go to post

    Leave a comment:


  • Geethu03
    started a topic Mysql List

    Mysql List

    Hi
    I am writing a query to list some fields in asc,and desc.i want to list the field in my won order. that is my filed name is Status, in this i stored a values High, Low and Medium. I am able to sort this field in asc and desc but i want list in High,Medium and Low and also the opposite way that is Low,Medium and High.

    How can i do this
    Pls anyone help to do this
    Thank you
    See more | Go to post

  • Geethu03
    started a topic Concatiniation of msg
    in PHP

    Concatiniation of msg

    Hi
    i am sending mails to some attachment files. in this i will replace the string with some condition. i concatenate all this to $msg but we a problem in the body of the Message. that is it will repeated at how many time we handle the str_replace what can i do for this.
    Code:
    $msg .= "--".$mime_boundary.$eol;
     $msg .= "Content-Type: text/plain; charset=iso-8859-1".$eol;
      $msg .= "Content-Transfer-Encoding:
    ...
    See more | Go to post

  • Geethu03
    started a topic Find the Upload File Type
    in Java

    Find the Upload File Type

    In my application i upload many files and also view that files. In view Files i gave the Content type is response.setCon tentType( "applicatio n/x download" );. but in the View the browser said the file type is UnKnown.
    How can i get the File type and also display that.

    Thanks and Regards
    Geethu
    See more | Go to post

  • Thank you for your Reply

    I resolved that problem.

    Thanks
    Geethu...
    See more | Go to post

    Leave a comment:


  • Geethu03
    started a topic IO Exception: Corrupt form data: premature ending
    in Java

    IO Exception: Corrupt form data: premature ending

    Hi
    I have a Tomcat 5.5 version and Run many applications using this. One of My Application is upload a file to mysql database, its works fine. My new application is update a file with some conditions. in this we udate some fileds but i have got a error java.io.IOExcep tion: Corrupt form data: premature ending but i don't know what is this.

    without file Update other fields are updated but i use the file the above error is...
    See more | Go to post

  • Geethu03
    started a topic Configure the php in Tomcat webserver
    in PHP

    Configure the php in Tomcat webserver

    Hi
    I am working with the Tomcat5.0 web apllication with JSP. Now i want to use the PHP programs so i want to confiure the PHP in my Tomcat5.0 version.
    I download the PHP5.2.3 windows version and i already use Tomcat 5.0. My doubt is how can i use the php programe using my Tomcat application, Please give the procedure to Configure the PHP in Tomcat version.

    Please help as soon as possible.

    Thanks and...
    See more | Go to post

  • Geethu03
    started a topic Problem in Java Struts
    in Java

    Problem in Java Struts

    Hi
    I am a java programer now i use the Struts in our program. But i don't know about the struts. i down load the struts and configure it in my Tomcat Webapps (i.e. war file) It extracted automatically. but i don't know where my java, jsp and struts xml files are stroed and how can i compile the java program and where i place the java class file.

    Please help to know the above details as soon as possible.

    ...
    See more | Go to post

  • Geethu03
    replied to Doubt in DateFormat
    I am not understand,Data base Problem means what?...
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...