• 0

checkboxes and PHP


Question

Hi guys,

I've written a simple script in PHP that allows users to submit their ascii art to the site. Each new submission gets an 'approved' value of 0 until it is reviewed and approved by myself. I've set up a basic admin area that pulls all the records from the database that have not yet been approved and displays them on screen. Below each record is a checkbox with a dynamically generated name in the form: chk[iD], where [iD] is the auto-incremented id of the record.

I'm having trouble determining whether a checkbox has been ticked or not when submitting my form, which queries the database. I've got the following code so far, but it does not seem to work (all checkboxes are read as 'checked'!): :

$approved=0; 

if($_POST['submit']) 
{ 
    $i=0; 

    while($i<$records_size) 
    { 
        $chkBox="chk" .$records[$i]; 

        #if checkbox of current record's id is checked 
        if($chkBox!="") 
        { 
            #create query 
            $sql="UPDATE asciiart SET approved=1 WHERE id=$records[$i]"; 

            #execute query 
            $result=mysql_query($sql,$connection); 

            $approved++; 
        } 

    $i++; 
    } 
        
    $url=$PHP_SELF ."?processed"; 
    print "<html><head><meta http-equiv='Refresh' content='1; url=$url'></head></html>"; 
    die("$approved of $records_size approved"); 
}

The if($chkBox!="") part of the code is obviously what's causing the problem, but I don't know to change it. Were it a VB app I would have done if chkBox[id].checked=false

The main page is at: http://www.cyberiapc.com/asciiart.php and the admin area is at http://www.cyberiapc.com/asciiart_pending.php

I'd appreciate any pointers?

Thanks.

CoreLEx

Link to comment
https://www.neowin.net/forum/topic/87239-checkboxes-and-php/
Share on other sites

12 answers to this question

Recommended Posts

  • 0

I tried your suggestion mr magoo, but now all checkboxes are read as "unchecked":

if($_POST['submit'])
{
    $i=0;
    $approved=0;

    #loop for all check boxes
    while($i<$records_size)
    {
        $chkBox="chk" .$records[$i];

        #if checkbox of current record's id is checked 
        if($_POST['$chkBox']==true) 
        { 
            #create query
            $sql="UPDATE asciiart SET approved=1 WHERE id=$records[$i]";

            #execute query
            $result=mysql_query($sql,$connection);

            $approved++;
        }

        $i++;
    }
        
    $url=$PHP_SELF ."?processed";
    print "<html><head><meta http-equiv='Refresh' content='1; url=$url'></head></html>";
    die("$approved of $records_size approved");
}

:pinch:

Link to comment
https://www.neowin.net/forum/topic/87239-checkboxes-and-php/#findComment-978010
Share on other sites

  • 0

Here's the code for the script:

<?php

    $connection = @mysql_connect("localhost","user","pass") or die("Sorry, unable to connect to MySQL");

    $result = @mysql_select_db(asciiart,$connection) or die("Sorry, unable to to get database.");

#--------------
# retrieve data
#--------------

$sql="select id,author,title,art,approved from asciiart";
$result=mysql_query($sql,$connection);

$counter=0;

$records=array();

#write the data

echo("<form action=\"$PHP_SELF\" method=post>");
echo("<center>");
echo("<table width=200 border=0 bgcolor=#FFFFFF cellpadding=3 style=\"border: 1px solid #ccd7e0; background-color: #fff;\">");

while($currentRow = mysql_fetch_array($result))
{
    if($currentRow["approved"]==0)
    {
        echo("<tr>");
        echo("<td width=100%>");
        echo("<font size=\"1\" face=\"verdana\">");

        echo($currentRow["title"] ."<br>");
        echo("</font>");

        echo("<font size=\"2\" face=\"verdana\">");
        echo("<b>" .$currentRow["art"] ."</b><br><br>");
        echo("</font>");
        echo("<input type=checkbox name=chk" .$currentRow["id"]  ." value=off>");
        echo($currentRow["id"]);

        #store id of records awaiting approval in an array
        $records[$counter]=$currentRow["id"];

        $counter++;

        echo("</td>");
        echo("</tr>");

        #seperator cell
        echo("<tr>");
        echo("<td width=100%>");
        echo("<hr width=100% color=#ccd7e0 size=1>");
        echo("</td>");
        echo("</tr>");
    }
}

echo("</tr>");
echo("</table>");
echo("</center>");
echo("<br>");
echo("<center><input type=submit name=submit value=Submit!></center>");
echo("<br>");

$records_size=count($records);
echo("<center>Records awaiting approval: " .$records_size ."</center>");

#--------------
# submit data
#--------------


if($_POST['submit'])
{
    $i=0;
    $approved=0;

    #loop for all check boxes
    while($i<$records_size)
    {
        $chkBox="chk" .$records[$i];

        #if checkbox of current record's id is checked 
        if($_POST['chkBox']) 
        { 
            #create query
            $sql="UPDATE asciiart SET approved=1 WHERE id=$records[$i]";

            #execute query
            $result=mysql_query($sql,$connection);

            $approved++;
        }

        $i++;
    }
}

#close
mysql_close();

?>

Link to comment
https://www.neowin.net/forum/topic/87239-checkboxes-and-php/#findComment-983713
Share on other sites

  • 0
dont you have to qualifity if($_POST['submit']) ??? like if($_POST['submit'] == true) { ???

nope you don't :p

if ( $_POST['submit'] )

is the same as

if ( $_POST['submit'] == TRUE )

or

if ( !$_POST['submit'] )

is the same as

if ( !$_POST['submit'] == TRUE)

but this will happen only if it exist and there is something in the variable

Link to comment
https://www.neowin.net/forum/topic/87239-checkboxes-and-php/#findComment-983748
Share on other sites

  • 0

try changing this line:

echo("<input type=checkbox name=chk" .$currentRow["id"]  ." value=off>");

to thie:

echo("<input type=checkbox name='chk" .$currentRow["id"]  ."'>");

and then change the if statement:

       if($_POST['chkBox'])

to this:

       if($_POST['chkBox']=="on")

Link to comment
https://www.neowin.net/forum/topic/87239-checkboxes-and-php/#findComment-984179
Share on other sites

  • 0

Thanks m0fo. That makes more sense, but unfortunately also does not work as expected. See http://www.cyberiapc.com/asciiart_pending.php

I wish there was a way to debug the script line by line to see why the checkboxes' states are not recognized by the latter part of the code that performs the UPDATE query.

I've been trying a few things in the meantime, but to no avail. :pinch:

Any other suggestions?

CoreLEx

Link to comment
https://www.neowin.net/forum/topic/87239-checkboxes-and-php/#findComment-984723
Share on other sites

  • 0
Here's the code for the script:

<?php

 ? ?$connection = @mysql_connect("localhost","user","pass") or die("Sorry, unable to connect to MySQL");

 ? ?$result = @mysql_select_db(asciiart,$connection) or die("Sorry, unable to to get database.");

#--------------
# retrieve data
#--------------

$sql="select id,author,title,art,approved from asciiart";
$result=mysql_query($sql,$connection);

$counter=0;

$records=array();

#write the data

echo("<form action=\"$PHP_SELF\" method=post>");
echo("<center>");
echo("<table width=200 border=0 bgcolor=#FFFFFF cellpadding=3 style=\"border: 1px solid #ccd7e0; background-color: #fff;\">");

while($currentRow = mysql_fetch_array($result))
{
 ? ?if($currentRow["approved"]==0)
 ? ?{
 ? ? ? ?echo("<tr>");
 ? ? ? ?echo("<td width=100%>");
 ? ? ? ?echo("<font size=\"1\" face=\"verdana\">");

 ? ? ? ?echo($currentRow["title"] ."<br>");
 ? ? ? ?echo("</font>");

 ? ? ? ?echo("<font size=\"2\" face=\"verdana\">");
 ? ? ? ?echo("<b>" .$currentRow["art"] ."</b><br><br>");
 ? ? ? ?echo("</font>");
 ? ? ? ?echo("<input type=checkbox name=chk" .$currentRow["id"] ?." value=off>");
 ? ? ? ?echo($currentRow["id"]);

 ? ? ? ?#store id of records awaiting approval in an array
 ? ? ? ?$records[$counter]=$currentRow["id"];

 ? ? ? ?$counter++;

 ? ? ? ?echo("</td>");
 ? ? ? ?echo("</tr>");

 ? ? ? ?#seperator cell
 ? ? ? ?echo("<tr>");
 ? ? ? ?echo("<td width=100%>");
 ? ? ? ?echo("<hr width=100% color=#ccd7e0 size=1>");
 ? ? ? ?echo("</td>");
 ? ? ? ?echo("</tr>");
 ? ?}
}

echo("</tr>");
echo("</table>");
echo("</center>");
echo("<br>");
echo("<center><input type=submit name=submit value=Submit!></center>");
echo("<br>");

$records_size=count($records);
echo("<center>Records awaiting approval: " .$records_size ."</center>");

#--------------
# submit data
#--------------


if($_POST['submit'])
{
 ? ?$i=0;
 ? ?$approved=0;

 ? ?#loop for all check boxes
 ? ?while($i<$records_size)
 ? ?{
 ? ? ? ?$chkBox="chk" .$records[$i];

 ? ? ? ?#if checkbox of current record's id is checked 
 ? ? ? ?if($_POST['chkBox']) 
 ? ? ? ?{ 
 ? ? ? ? ? ?#create query
 ? ? ? ? ? ?$sql="UPDATE asciiart SET approved=1 WHERE id=$records[$i]";

 ? ? ? ? ? ?#execute query
 ? ? ? ? ? ?$result=mysql_query($sql,$connection);

 ? ? ? ? ? ?$approved++;
 ? ? ? ?}

 ? ? ? ?$i++;
 ? ?}
}

#close
:)ysql_close();

?>

Just change if($_POST['chkBox']) to if($_POST[ $chkBox ])

:)

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • Anthropic pulls Fable 5 and Mythos 5 after US export control order by Pradeep Viswanathan In April this year, Anthropic launched the Claude Mythos Preview frontier model with state-of-the-art cyber and coding capabilities for a select set of companies around the world. After preparing appropriate guardrails, early this week, Anthropic launched Claude Fable 5 and Mythos 5, its most capable AI models. Claude Fable 5 is for general users and comes with strict safeguards, while Mythos 5 is designed with fewer safeguards for cybersecurity and biology use cases. Today, Anthropic abruptly suspended access to its Fable 5 and Mythos 5 AI models for all customers after receiving an export control directive from the US government. The company received the directive from the government today at 5:21 p.m. ET, and the received letter did not provide any details regarding the national security concern. Anthropic understands that the government became aware of a method to bypass, or “jailbreak,” Fable 5, which might be the reason behind the directive. The order was issued under national security authorities and requires the company to suspend all access to Fable 5 and Mythos 5 by any foreign national, whether they are inside or outside the United States. The restriction also applies to foreign national employees working at Anthropic. As a result, the company has disabled both models for all customers to ensure compliance. Access to previous Anthropic models like Opus and Sonnet is not affected by this government order. The company highlighted that it had developed strong safeguards to reduce the possibility that Fable is misused for tasks related to cybersecurity. In fact, many developers are complaining that the safeguards are going overboard. Additionally, the company worked with the US government, the UK AISI, multiple private third-party organizations, and internal teams to red-team Fable’s safeguards for thousands of hours. Finally, Anthropic noted that no testers have yet been able to find a universal jailbreak on Fable 5. As expected, Anthropic disagrees that a narrow potential jailbreak should lead to the recall of a commercial model used by hundreds of millions of people. It warned that applying this standard across the AI industry could effectively halt new frontier model deployments. Anthropic concluded by mentioning that it is working to restore access to Fable 5 and Mythos 5 as soon as possible and plans to share more details within the next 24 hours.
    • Brave Browser 1.91.172 is out.
    • Any Video Converter Free 9.2.3 by Razvan Serea Any Video Converter is an All-in-One video converting tool with an easy-to-use graphical interface, fast converting speed and excellent video quality. Any Video Converter supports all popular video formats and converts your videos to different video formats including MP4, MOV, MKV, M2TS, M4V, MPEG, AVI, WMV, ASF, OGV, WEBM, and more. It supports converting videos to customized percent (50%, 100%, 200%, and more) or resolution (480p, 720p, 1080p, 4K, and more); It supports encoding videos into x264, x265, h263p, xvid, mpeg, wmv, and more. Any Video Converter Free key features: Compatible with Windows 11/10/8.1/8/7 (32-64bit) User interface are available in 14 languages Convert all kinds of video formats including high-definition videos Extract audio from any videos and save as MP3/WMA for your mp3 player Take snapshot from any videos and build your own picture collection Support high-definition for both input and output Batch add videos from hard drive and batch convert Customize output parameters completely as you like Manage your output videos files by group or output profile Merge several video files into a single and long one Clip a video into segments Free Audio Filter: Adjust audio volume and add audio effects Crop frame size to remove black bars and retain what you want only Adjust the brightness, contrast, saturation Rotate or flip or add noise/sharpen effects Produce output video with subtitles of your own dialogue and much, much more... Any Video Converter Free 9.2.3 changelog: Fixed video download engine auto-update failures. Added custom speed control support in the speed change tool. Added support for downloading YouTube AI-generated subtitles. Added support for preserving original audio stream in the format convert tool (e.g., Dolby Atmos, DTS:X). Fixed other bugs and improved overall performance. Download: Any Video Converter Free 9.2.3 | 7.6 MB (Freeware) View: Any Video Converter Free Home Page | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • Not sure what country you’re in but in many countries you can absolutely jail the sellers behind businesses… in fact I’d say in most countries you can do that
    • I guess we are done since you refuse to read my comment you replied to or my other comment in another thread you were also a part of here.
  • Recent Achievements

    • Contributor
      MarkHughes4096 went up a rank
      Contributor
    • Dedicated
      jordanspringer earned a badge
      Dedicated
    • Rookie
      Rimplesnort went up a rank
      Rookie
    • One Year In
      Markus94287 earned a badge
      One Year In
    • One Month Later
      Markus94287 earned a badge
      One Month Later
  • Popular Contributors

    1. 1
      +primortal
      497
    2. 2
      +Edouard
      173
    3. 3
      PsYcHoKiLLa
      148
    4. 4
      ATLien_0
      92
    5. 5
      Steven P.
      79
  • Tell a friend

    Love Neowin? Tell a friend!