Jump to content

rajeshkr

Members
  • Posts

    37
  • Joined

  • Last visited

Posts posted by rajeshkr

  1. hi, I am trying to save some textbox array into database , i have write some code but it giving error, i have searched but couldn't find the reason of error. Can you help me out in this. 

    <?php
    require_once("config.php");
    if(isset($_POST['save'])){
    //$slno=$_POST['slno'];
    //echo "hello"." ".$slno;
    $customer_id="1";
    $customer_name="Mr.Rajesh";
    $customer_user_name="rkr";
    $date=date('d-m-Y');
    $time=date('h:m:i:A');
    
    $post_count = count($_POST['slno']);
    $sl_no = array();
    $album_name = array();
    $paper_used = array();
    $finishing = array();
    $price = array();
    $vat = array();
    $total_amt = array();
    
    $sl_no = $_POST['slno'];
    $album_name = $_POST['album_name'];
    $paper_used = $_POST['paper_used'];
    $finishing = $_POST['finishing'];
    $price = $_POST['price'];
    $vat = $_POST['vat'];
    $total_amt = $_POST['total_amt'];
    for ($i = 0; $i <= $post_count; $i++)
    {
    $sql[] = "INSERT INTO customer_album_price(customer_id, customer_name, customer_user_name, sl_no, album_name, paper, finish, price, vat, total_amt, date, time) VALUES ($customer_id','$customer_name','$customer_user_name','".$sl_no[$i]."','".$album_name[$i]."','".$paper_used[$i]."','".$finishing[$i]."','".$price[$i]."','".$vat[$i]."','".$total_amt[$i]."','$date','$time')";
    }
    foreach ($sql as $query)
    {
    mysqli_query($con, $query);
    }
    
    }
    ?>
    <!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>
    </head>
    
    <body >
    <form id="registration" name="registration" method="post" action="<?php echo $_SERVER['PHP_SELF']?>">
    <?php
    
    $query_for_result=mysqli_query($con,"SELECT * FROM album ORDER BY id ASC");
    $num=mysqli_num_rows($query_for_result);
    mysqli_close($con);
    
    ?>
    <table >
    <tr>
    <td>Sl.No..</td>
    <td >Item</td>
    <td >Paper</td>
    <td >Finish</td>
    <td >Price</td>
    <td >Vat</td>
    <td >Total Amount</td>
    
    </tr>
    
    <?php
    
    $i=0;
    
    while($row = mysqli_fetch_assoc($query_for_result))
    {
    $f1=$row['id'];
    $f2=$row['album_name'];
    $f3=$row['paper_used'];
    $f4=$row['finishing'];
    $f5=$row['price'];
    $f6=$row['vat'];
    $f7=$row['total_amt'];
    
    $id=$i+1;
    //echo $id;
    ?>
    <tr>
    <td><input id="slno" name="slno[]" value="<?php echo $f1; ?>" type="text" style="width:20px;"/></td>
    <td><input id="album_name" name="album_name[]" value="<?php echo $f2; ?>" type="text" style="width:150px;"/></td>
    <td><input id="paper_used" name="paper_used[]" type="text" value="<?php echo $f3; ?>" style="width:85px;"/></td>
    <td><input id="finishing" name="finishing[]" value="<?php echo $f4; ?>" type="text" style="width:90px;"/></td>
    <td><input id="price" name="price[]" value="<?php echo $f5; ?>" type="text" style="width:25px;"/></td>
    <td><input id="vat" name="vat[]" type="text" value="<?php echo $f6; ?>" style="width:35px;"/></td>
    <td><input id="total_amt" name="total_amt[]" value="<?php echo $f7; ?>" type="text" style="width:50px;"/></td>
    
    </tr>
    <?php
    $i++;
    
    }
    
    ?>
    <tr>
    <td colspan="7" ><input name="save" value="Save" id="save" type="submit" style="width:83px;" /></td>
    
    </tr>
    </table>
    </form>
    
    </body>
    </html>

    Thanks

  2. hi,
    I am using the below code and want a simple print on submit event, but it is not giving any result.
    Please have a look and suggest.


    <?php
    if(isset($_POST['submit'])){
    $slno=$_POST['slno'];
    echo "hello"." ".$slno;// this is to print.
    }
    ?>
    <!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>
    </head>

    <body bgcolor="#FF0000">
    <form id="registration" name="registration" method="post" action="<?php echo $_SERVER['PHP_SELF']?>">
    <?php
    require_once("proconfig.php");
    $query_for_result=mysqli_query($con,"SELECT * FROM album ORDER BY id ASC");
    $num=mysqli_num_rows($query_for_result);
    mysqli_close($con);

    ?>
    <table >
    <tr>
    <td>Sl.No..</td>
    <td >Item</td>
    <td >Paper</td>
    <td >Finish</td>
    <td >Price</td>
    <td >Vat</td>
    <td >Total Amount</td>

    </tr>

    <?php

    $i=0;

    while($row = mysqli_fetch_assoc($query_for_result)) 
    {
    $f1=$row['id'];
    $f2=$row['album_name'];
    $f3=$row['paper_used'];
    $f4=$row['finishing'];
    $f5=$row['price'];
    $f6=$row['vat'];
    $f7=$row['total_amt'];

    $id=$i+1;
    //echo $id;
    ?>
    <tr>
    <td><input id="slno" name="slno[]" value="<?php echo $f1; ?>" type="text" style="width:20px;"/></td>
    <td><input id="album_name" name="album_name[]" value="<?php echo $f2; ?>" type="text" style="width:150px;"/></td>
    <td><input id="paper_used" name="paper_used[]" type="text" value="<?php echo $f3; ?>" style="width:85px;"/></td>
    <td><input id="finishing" name="finishing[]" value="<?php echo $f4; ?>" type="text" style="width:90px;"/></td>
    <td><input id="price" name="price[]" value="<?php echo $f5; ?>" type="text" style="width:25px;"/></td>
    <td><input id="vat" name="vat[]" type="text" value="<?php echo $f6; ?>" style="width:35px;"/></td>
    <td><input id="total_amt" name="total_amt[]" value="<?php echo $f7; ?>" type="text" style="width:50px;"/></td>

    </tr>
    <?php
    $i++;

    }

    ?>
    <tr>
    <td colspan="7" ><input name="save" value="Save" id="save" type="submit" style="width:83px;" /></td>

    </tr> 
    </table>
    </form>

    </body>
    </html>

    thanks

  3. hi,
    I change my code accordingly but this show error, going to else part
    here is my code..
    <?php
    require_once("config.php");
    $query_for_result=mysqli_query($con,"SELECT * FROM items ORDER BY id ASC");
    $num=mysqli_num_rows($query_for_result);
    mysqli_close($con);

    ?>
    <table width="50%" align="center" border="0" cellspacing="0" cellpadding="5" style="font-family:Verdana, Arial, Helvetica, sans-serif; background:#87bb2f; -moz-border-radius: 14px; border-radius: 14px; font-size:12px; color:#000000; border:solid #d6d4d5; border-width:1px; margin-top:-1px;"> <tr>
    <td valign="top" style="font-size:11px; background:#87bb2f; font-weight:bold;" align="center" >Sl.No..</td>
    <td valign="top" style="font-size:11px; background:#87bb2f; font-weight:bold;" align="center" >Item</td>
    <td valign="top" style="font-size:11px; background:#87bb2f; font-weight:bold;" align="center" >Paper</td>
    <td valign="top" style="font-size:11px; background:#87bb2f; font-weight:bold;" align="center" >Finish</td>
    <td valign="top" style="font-size:11px; background:#87bb2f; font-weight:bold;" align="center" >Price</td>
    <td valign="top" style="font-size:11px; background:#87bb2f; font-weight:bold;" align="center" >Vat</td>
    <td valign="top" style="font-size:11px; background:#87bb2f; font-weight:bold;" align="center" >Total Amount</td>

    </tr>

    <?php

    $i=0;

    while($row = mysqli_fetch_assoc($query_for_result)) 
    {
    $f1=$row['id'];
    $f2=$row['album_name'];
    $f3=$row['paper_used'];
    $f4=$row['finishing'];
    $f5=$row['price'];
    $f6=$row['vat'];
    $f7=$row['total_amt'];

    $id=$i+1;

    ?>
    <tr>
    <td valign="top" style="font-size:11px; " align="center" ><input id="slno" name="slno[]" type="text" value="<?php echo $f1; ?>" style="width:20px;"/></td>
    <td valign="top" style="font-size:11px; " align="center" ><input id="album_name" name="album_name[]" value="<?php echo $f2; ?>" type="text" style="width:150px;"/></td>
    <td valign="top" style="font-size:11px; " align="center" ><input id="paper_used" name="paper_used[]" type="text" value="<?php echo $f3; ?>" style="width:85px;"/></td>
    <td valign="top" style="font-size:11px; " align="center" ><input id="finishing" name="finishing[]" value="<?php echo $f4; ?>" type="text" style="width:90px;"/></td>
    <td valign="top" style="font-size:11px; " align="center" ><input id="price" value="<?php echo $f5; ?>" name="price[]" type="text" style="width:25px;"/></td>
    <td valign="top" style="font-size:11px; " align="center" ><input id="vat" value="<?php echo $f6; ?>" name="vat[]" type="text" style="width:35px;"/></td>
    <td valign="top" style="font-size:11px; " align="center" ><input id="total_amt" name="total_amt[]" value="<?php echo $f7; ?>" type="text" style="width:50px;"/></td>


    </tr>
    <?php
    $i++;

    }


    ?>

    </table>

    <?php

    if(isset($_POST['submit']))
    {
    require_once("config.php");
    foreach($_POST['slno'] as $k => $Sl_No)
    {
    if(!empty($Sl_No))
    {
    $customer_id="1";
    $customer_name="Mr.Rajesh";
    $customer_user_name="rkr";
    $date=date('d-m-Y');
    $time=date('h:m:i:A');
    $Sl_No = mysqli_real_escape_string(trim($_POST['slno'][$k]));
    $album_name = mysqli_real_escape_string(trim($_POST['album_name'][$k]));
    $paper_used = mysqli_real_escape_string(trim($_POST['paper_used'][$k]));
    $finishing = mysqli_real_escape_string(trim($_POST['finishing'][$k]));
    $price = mysqli_real_escape_string(trim($_POST['price'][$k]));
    $vat = mysqli_real_escape_string(trim($_POST['vat'][$k]));
    $total_amount = mysqli_real_escape_string(trim($_POST['total_amt'][$k]));

    $values[] = "('$customer_id','$customer_name','$customer_user_name','$Sl_No','$album_name','$paper_used','$finishing','$price','$vat','$total_amount','$date','$time')";


    $sql = "INSERT INTO mytable
    (customer_id, customer_name, customer_user_name, sl_no, album_name, paper, finish, price, vat, total_amt, date, time)
    values ";
    $sql .= implode(",",$values);
    mysqli_query($con,$sql) or die(mysqli_connect_error()); 
    }
    else
    {
    echo "error";




    ?>

  4. Why? Storing the same data in multiple tables is not very good database design.

     

    What purpose does this serve?

    Hi,

    thanks but the reason behind this is? this the first phase of the list that will be same for every customer. but at this time of registration these prices will be change customer by customer, so every customer will have different price list.

    thanks

  5. Hi,

    i have a registration form (screenshot attached). I create two table to store them, one customer_master, send item_details. but i want to know how to get values of these (item) textboxes to insert into the database.

    Here is the code by which these fields are generating.

    Hi,

     

    i have a registration form (screenshot attached). I create two table to store them, one customer_master, send item_details. but i want to know how to get values of these (item) textboxes to insert into the database. 

    Here is the code by which these fields are generating.

    ******************************************************************************************* This is the new code. and i want to insert these fields into other table. not update in existing one.

    <?php

    require_once("config.php");

    $query_for_result=mysql_query("SELECT * FROM mytable ORDER BY id ASC");

    $num=mysql_numrows($query_for_result);

     

     

    mysql_close();

    ?>

    <table> <tr>

    <td >Sl.No..</td>

    <td >Item</td>

    <td >Paper</td>

    <td >Finish</td>

    <td>Price</td>

    <td >Vat</td>

    <td >Total Amount</td>

     

    </tr>

     

    <?php

    $i=0;

    while ($i < $num)

    {

     

    $f1=mysql_result($query_for_result,$i,"id");

    $f2=mysql_result($query_for_result,$i,"album_name");

    $f3=mysql_result($query_for_result,$i,"paper_used");

    $f4=mysql_result($query_for_result,$i,"finishing");

    $f5=mysql_result($query_for_result,$i,"price");

    $f6=mysql_result($query_for_result,$i,"vat");

    $f7=mysql_result($query_for_result,$i,"total_amt");

    $id=$i+1;

    ?>

    <tr>

    <td ><input id="slno" name="slno" type="text" value="<?php echo $f1; ?>" style="width:20px;"/></td>
       <td ><input id="album_name" name="album_name" value="<?php echo $f2; ?>" type="text" style="width:150px;"/></td>
       <td ><input id="paper_used" name="paper_used" type="text" value="<?php echo $f3; ?>" style="width:85px;"/></td>
       <td ><input id="finishing" name="finishing"  value="<?php echo $f4; ?>" type="text" style="width:90px;"/></td>
       <td ><input id="price"  value="<?php echo $f5; ?>" name="price" type="text" style="width:25px;"/></td>
       <td ><input id="vat"  value="<?php echo $f6; ?>" name="vat" type="text" style="width:35px;"/></td>
       <td ><input id="total_amt" name="total_amt"  value="<?php echo $f7; ?>" type="text" style="width:50px;"/></td>

    </tr>

    <?php

    $i++;

     

    }

     

     

    ?>

    <tr>

     <td  ><input id="slno" name="slno" type="text" value="26" style="width:20px;"/></td>
       <td><input id="album_name" name="album_name" value="" type="text" style="width:150px;"/></td>
       <td ><input id="paper_used" name="paper_used" type="text" value="" style="width:85px;"/></td>
       <td ><input id="finishing" name="finishing"  value="" type="text" style="width:90px;"/></td>
       <td  ><input id="price"  value="" name="price" type="text" style="width:25px;"/></td>
       <td ><input id="vat"  value="" name="vat" type="text" style="width:35px;"/></td>
       <td ><input id="total_amt" name="total_amt"  value="" type="text" style="width:50px;"/></td>

    </tr> 

    <tr>

    <td ><input id="security_code" name="security_code" value="27" type="text" style="width:20px;"/></td>

    <td><input id="album_name" name="album_name" value="" type="text" style="width:150px;"/></td>
       <td ><input id="paper_used" name="paper_used" type="text" value="" style="width:85px;"/></td>
       <td ><input id="finishing" name="finishing"  value="" type="text" style="width:90px;"/></td>
       <td  ><input id="price"  value="" name="price" type="text" style="width:25px;"/></td>
       <td ><input id="vat"  value="" name="vat" type="text" style="width:35px;"/></td>
       <td ><input id="total_amt" name="total_amt"  value="" type="text" style="width:50px;"/></td>

    </tr> 

    <tr>

    <td ><input id="security_code" name="security_code" value="28" type="text" style="width:20px;"/></td>

    <td><input id="album_name" name="album_name" value="" type="text" style="width:150px;"/></td>
       <td ><input id="paper_used" name="paper_used" type="text" value="" style="width:85px;"/></td>
       <td ><input id="finishing" name="finishing"  value="" type="text" style="width:90px;"/></td>
       <td  ><input id="price"  value="" name="price" type="text" style="width:25px;"/></td>
       <td ><input id="vat"  value="" name="vat" type="text" style="width:35px;"/></td>
       <td ><input id="total_amt" name="total_amt"  value="" type="text" style="width:50px;"/></td>

    </tr> 

    <tr>

    <td ><input id="security_code" name="security_code" value="29" type="text" style="width:20px;"/></td>

    <td><input id="album_name" name="album_name" value="" type="text" style="width:150px;"/></td>
       <td ><input id="paper_used" name="paper_used" type="text" value="" style="width:85px;"/></td>
       <td ><input id="finishing" name="finishing"  value="" type="text" style="width:90px;"/></td>
       <td  ><input id="price"  value="" name="price" type="text" style="width:25px;"/></td>
       <td ><input id="vat"  value="" name="vat" type="text" style="width:35px;"/></td>
       <td ><input id="total_amt" name="total_amt"  value="" type="text" style="width:50px;"/></td>

    </tr> 

    </table>

     

    I want to store data of all 29 text boxes. but don't know how to get values of these ?

    Thanks

     

     

    I want to store data of all 29 text boxes. but don't know how to get values of these ? 

     

    Thanks

  6. Hi,

    i have a registration form (screenshot attached). I create two table to store them, one customer_master, send item_details. but i want to know how to get values of these (item) textboxes to insert into the database.

    Here is the code by which these fields are generating.

    Hi,

    i have a registration form (screenshot attached). I create two table to store them, one customer_master, send item_details. but i want to know how to get values of these (item) textboxes to insert into the database. 
    Here is the code by which these fields are generating.

    <?php
    require_once("config.php");
    $query_for_result=mysql_query("SELECT * FROM mytable ORDER BY id ASC");
    $num=mysql_numrows($query_for_result);


    mysql_close();
    ?>
    <table> <tr>
    <td >Sl.No..</td>
    <td >Item</td>
    <td >Paper</td>
    <td >Finish</td>
    <td>Price</td>
    <td >Vat</td>
    <td >Total Amount</td>

    </tr>

    <?php
    $i=0;
    while ($i < $num)
    {

    $f1=mysql_result($query_for_result,$i,"id");
    $f2=mysql_result($query_for_result,$i,"album_name");
    $f3=mysql_result($query_for_result,$i,"paper_used");
    $f4=mysql_result($query_for_result,$i,"finishing");
    $f5=mysql_result($query_for_result,$i,"price");
    $f6=mysql_result($query_for_result,$i,"vat");
    $f7=mysql_result($query_for_result,$i,"total_amt");
    $id=$i+1;
    ?>
    <tr>
    <td><input id="slno" name="security_code" type="text" value="<?php echo $f1; ?>" style="width:20px;"/></td>
    <td ><input id="security_code" name="security_code" value="<?php echo $f2; ?>" type="text" style="width:150px;"/></td>
    <td ><input id="security_code" name="security_code" type="text" value="<?php echo $f3; ?>" style="width:85px;"/></td>
    <td ><input id="security_code" name="security_code" value="<?php echo $f4; ?>" type="text" style="width:90px;"/></td>
    <td ><input id="security_code" value="<?php echo $f5; ?>" name="security_code" type="text" style="width:25px;"/></td>
    <td ><input id="security_code" value="<?php echo $f6; ?>" name="security_code" type="text" style="width:35px;"/></td>
    <td ><input id="security_code" name="security_code" value="<?php echo $f7; ?>" type="text" style="width:50px;"/></td>


    </tr>
    <?php
    $i++;

    }


    ?>
    <tr>
    <td ><input id="security_code" name="security_code" type="text" value="26" style="width:20px;"/></td>
    <td ><input id="security_code" name="security_code" value="" type="text" style="width:150px;"/></td>
    <td ><input id="security_code" name="security_code" type="text" value="" style="width:85px;"/></td>
    <td ><input id="security_code" name="security_code" value="" type="text" style="width:90px;"/></td>
    <td ><input id="security_code" value="" name="security_code" type="text" style="width:25px;"/></td>
    <td ><input id="security_code" value="" name="security_code" type="text" style="width:35px;"/></td>
    <td ><input id="security_code" name="security_code" value="" type="text" style="width:50px;"/></td>


    </tr> 
    <tr>
    <td ><input id="security_code" name="security_code" value="27" type="text" style="width:20px;"/></td>
    <td ><input id="security_code" name="security_code" value="" type="text" style="width:150px;"/></td>
    <td ><input id="security_code" name="security_code" type="text" value="" style="width:85px;"/></td>
    <td ><input id="security_code" name="security_code" value="" type="text" style="width:90px;"/></td>
    <td ><input id="security_code" value="" name="security_code" type="text" style="width:25px;"/></td>
    <td ><input id="security_code" value="" name="security_code" type="text" style="width:35px;"/></td>
    <td><input id="security_code" name="security_code" value="" type="text" style="width:50px;"/></td>


    </tr> 
    <tr>
    <td ><input id="security_code" name="security_code" value="28" type="text" style="width:20px;"/></td>
    <td ><input id="security_code" name="security_code" value="" type="text" style="width:150px;"/></td>
    <td><input id="security_code" name="security_code" type="text" value="" style="width:85px;"/></td>
    <td ><input id="security_code" name="security_code" value="" type="text" style="width:90px;"/></td>
    <td ><input id="security_code" value="" name="security_code" type="text" style="width:25px;"/></td>
    <td><input id="security_code" value="" name="security_code" type="text" style="width:35px;"/></td>
    <td ><input id="security_code" name="security_code" value="" type="text" style="width:50px;"/></td>


    </tr> 
    <tr>
    <td ><input id="security_code" name="security_code" value="29" type="text" style="width:20px;"/></td>
    <td><input id="security_code" name="security_code" value="" type="text" style="width:150px;"/></td>
    <td><input id="security_code" name="security_code" type="text" value="" style="width:85px;"/></td>
    <td ><input id="security_code" name="security_code" value="" type="text" style="width:90px;"/></td>
    <td ><input id="security_code" value="" name="security_code" type="text" style="width:25px;"/></td>
    <td ><input id="security_code" value="" name="security_code" type="text" style="width:35px;"/></td>
    <td><input id="security_code" name="security_code" value="" type="text" style="width:50px;"/></td>


    </tr> 
    </table>

    I want to store data of all 29 text boxes. but don't know how to get values of these ?
    Thanks

     

     

    I want to store data of all 29 text boxes. but don't know how to get values of these ? 

     

    Thanks

  7. Hi,

    I have some data to upload through php and the data could be in zipped or RAR format and file size could be more than 400MB. So i need some good code to work on this with minimum data loose and error.

    Could it be possible to upload such a large amount of data through php, if yes then i request to you please suggest some good stuff to use.

     

    Thanks

  8. Hi, I am using a code to fetch values from the database using php code in Html format. but i am facing a problem while fetching table having more than 1000 rows that giving the result "Null", but for lesser rows table this code working fine.

    Here is the code...

    <?php

    include("repo_db.php");

    $query=mysql_query("Select * from tbl_coupons") or die(mysql_error());

    if(!$query) { mysql_close();

    echo json_encode("There was an error running the query: " . mysql_error());

    }

    else if(!mysql_num_rows($query))

    {

    mysql_close();

    echo json_encode("No result return!");

    }

    else

    {

    $header = false;

    $output_string = "Production Details By Customer Name"; $output_string .= "\n";

    while($row = mysql_fetch_assoc($query))

    {

    if(!$header)

    {

    $output_string .= "\n";

    foreach($row as $header => $value) { $output_string .= "{$header}\n";

    }

    $output_string .= "\n";

    }

    $output_string .= "\n";

    foreach($row as $value)

    {

    $output_string .= "{$value}\n";

    }

    $output_string .= "\n";

    }

    $output_string .= "\n";

    }

    mysql_close();

    // This echo for jquery

    echo json_encode($output_string);

    ?>

    Can anyone suggest the problem solution.

    Thanks

  9. Hi,

    I am fetching content from url & causing problem.

    EX.

    URL: http://localhost/pb-customer-portal/forms/service_call_report1.php?customer_name=Rajesh%20Kumar&customer_address=229%20house%20no%20&%20gali%20no%2034,%20harsh%20vihar&customer_address1=undefined&call_no=122451&machine_model_no=854221144&machine_serial_no=963258

     

    when i am fetching by using 

    $customer_address=$_REQUEST["customer_address"];

    i should get address= 229 house no & gali no 34, harsh vihar,

    But i only getting 229 house no. (not getting after Bold & in URL)

     

    Can anyone suggest how to tackle this problem.

     

    Thanks

  10. Hi, Thanks to read.

     

    Which type of information you are talking about.

    I just develope a page with login id and pwd.

     

    putting with session.

     

    i just want that when user loged in than after that whatever he will do, i want to trak him. till he loged out.

     

     

     

  11. hi to all,

     

    Hello friends, I just start working with php and i got a assignment to do that is check user work details,

    Like when a user loged in after that whatever he did (which which page he visit, what he download etc etc) after loged in and before logged out.

    So if any one of you have any idea about this type of work or any guidence you can give me so that i could able to do this. than i will be very thankful.

     

    Thanks in Advance

    Regards

    Rajesh Rathor

    rajehkrathor@gmail.com

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.