post without form ?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Angelos

    post without form ?

    I have this list of logs stored in a MySQL DB.
    I display them in a list and next to each log I have a del view LINK

    I want to add Checkboxes next to each log and keep del and view links as
    well.

    Then you can select all the logs you want to delete, hit a delete Link and
    send the variables in a script...
    Can you do that without having a form ?

    Can you have a checkbox without having a form ?

    It sounds a bit awkward but I am just wandering

    <li><a href="transacti on.php?contCat= <? echo $contCat
    ?>&action=delet e&contSubCat= <? echo $contSubCat ?>&content_id=< ?php echo
    $row['backup_id']; ?>"onClick="ret urn formConfirm('de l')">Del</a><input
    name="<?php echo $row['backup_id']; ?>" type="checkbox" value="1">
    </li>


  • ZeldorBlat

    #2
    Re: post without form ?

    Nope -- without a <form> tag the checkbox values won't make it to the
    next page.

    Comment

    • Tony

      #3
      Re: post without form ?

      "Angelos" <angelos@redcat media.net> wrote in message
      news:d8s537$ros $1@nwrdmz02.dmz .ncs.ea.ibs-infra.bt.com...[color=blue]
      >I have this list of logs stored in a MySQL DB.
      > I display them in a list and next to each log I have a del view LINK
      >
      > I want to add Checkboxes next to each log and keep del and view links as
      > well.
      >
      > Then you can select all the logs you want to delete, hit a delete Link and
      > send the variables in a script...
      > Can you do that without having a form ?
      >
      > Can you have a checkbox without having a form ?[/color]

      Not one that will do anything, unless you also want to use JavaScript. Of
      course, that brings on a whole pile of other issues.

      Why would you not want to have a form?



      Comment

      • Kenneth Downs

        #4
        Re: post without form ?

        Angelos wrote:
        [color=blue]
        > I have this list of logs stored in a MySQL DB.
        > I display them in a list and next to each log I have a del view LINK
        >
        > I want to add Checkboxes next to each log and keep del and view links as
        > well.
        >
        > Then you can select all the logs you want to delete, hit a delete Link and
        > send the variables in a script...
        > Can you do that without having a form ?
        >
        > Can you have a checkbox without having a form ?
        >
        > It sounds a bit awkward but I am just wandering
        >
        > <li><a href="transacti on.php?contCat= <? echo $contCat
        > ?>&action=delet e&contSubCat= <? echo $contSubCat ?>&content_id=< ?php echo
        > $row['backup_id']; ?>"onClick="ret urn formConfirm('de l')">Del</a><input
        > name="<?php echo $row['backup_id']; ?>" type="checkbox" value="1">
        > </li>[/color]

        If you want to use javascript you can do this. In place of a submit button
        you have a button that runs a script in the browser. The script walks
        through the checkboxes and builds a list of the ones that are checked. It
        generates a link that might look like this:

        var Destination = "deletes.php?li st=" + list;

        Then it jumps to that location with:

        window.navigate (Destination);


        --
        Kenneth Downs
        Secure Data Software, Inc.
        (Ken)nneth@(Sec )ure(Dat)a(.com )

        Comment

        • Angelos

          #5
          How Can You get the checkbox Values

          > <li><a href="transacti on.php?contCat= <? echo $contCat[color=blue]
          > ?>&action=delet e&contSubCat= <? echo $contSubCat ?>&content_id=< ?php echo
          > $row['backup_id']; ?>"onClick="ret urn formConfirm('de l')">Del</a><input
          > name="<?php echo $row['backup_id']; ?>" type="checkbox" value="1">
          > </li>[/color]

          Ok considering wi have the above code tha loops and lists a Number of DB
          entries
          how can we assign a checkbox in each of them and then retrieve each
          checkboxs' value in order to delete the appropriate record when the form is
          submited ?

          THanks !!!



          Comment

          • eilks

            #6
            Re: How Can You get the checkbox Values

            Ok try something like this (example code... i tried to comment in it as
            much as possible):

            for this example.. logs table structure:
            id (primary, auto-increment)
            description

            ---------------------

            <?

            include("db.php ");
            //connect to db

            if(!isset($_POS T['submit'])) {
            //form isn't submitted

            echo "<b>Logs</b><br><br>";

            echo "<form action=\"\" method=\"post\" >";


            $query = "SELECT * FROM logs";
            $result = mysql_query($qu ery);
            while($row = mysql_fetch_arr ay($result)) {
            $id = $row['id'];
            $description = $row['description'];
            echo "Log: $description <input type=\"checkbox \" name=\"log_$id\ "
            value=\"1\"><br >";
            }
            //get all log values, and present checkbox
            //NOTE: checkbox values are prefixed with 'log_', explained later..

            echo "<input type=\"submit\" name=\"submit\" value=\"Delete\ ">";
            //input button

            } else {

            foreach ($_POST as $key => $value) {
            if(strstr($key, 'log_')){
            //if the value contains log_ then its used
            if($value == '1'){
            $id = str_replace("lo g_", "", $key);
            //log_ prefix is removed to get the id
            $query = "DELETE FROM logs WHERE id='$id'";
            mysql_query($qu ery) or
            die (mysql_error()) ;
            //deleted..
            }

            }

            }

            echo "<b>Done</b>";

            }

            ?>

            ---------------------

            ok basics behind the script...

            since theres an unknown number of form values the following is used:

            foreach ($_POST as $key => $value) {
            //code
            }

            ....which loops through all the form elements and their values.
            However this can cause a problems, because other form elements will be
            picked up other than the checkboxes, such as the input button. THIS is
            the reason that i prefixed all checkboxs with 'log_', so it can later
            be checked.

            i hope this is the kind of thing you are after ;)

            -eilks

            Angelos wrote:[color=blue][color=green]
            > > <li><a href="transacti on.php?contCat= <? echo $contCat
            > > ?>&action=delet e&contSubCat= <? echo $contSubCat ?>&content_id=< ?php echo
            > > $row['backup_id']; ?>"onClick="ret urn formConfirm('de l')">Del</a><input
            > > name="<?php echo $row['backup_id']; ?>" type="checkbox" value="1">
            > > </li>[/color]
            >
            > Ok considering wi have the above code tha loops and lists a Number of DB
            > entries
            > how can we assign a checkbox in each of them and then retrieve each
            > checkboxs' value in order to delete the appropriate record when the form is
            > submited ?
            >
            > THanks !!![/color]

            Comment

            • Angelos

              #7
              Re: How Can You get the checkbox Values

              > i hope this is the kind of thing you are after ;)[color=blue]
              >
              > -eilks[/color]
              Yep ... it looks to be what I want ;-)
              That _log prefix does the work !!! :)
              Thanks a lot !


              Comment

              Working...