close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

rating

single ecart var to hold multiple values?

Thread began 6/10/2010 12:35 pm by ijs174940 | Last modified 6/15/2010 7:11 am by Jason Byrnes | 1436 views | 3 replies |

ijs174940Beta Tester

single ecart var to hold multiple values?

I have a item that can be chossen for more than one location and they are choosen from a group of checkboxs which I just made a simple loop for :

<?php do { ++$i?>

<input <?php if (isset($_POST['Pub_'.$i])) {echo "checked=\"checked\"";} ?> type="checkbox" name="Pub_<?php echo $i;?>" value="<?php echo $row_rs_member_list['ID'];?>" /><?php echo $row_rs_member_list['PUB_NAME']; ?><br />

<?php } while ($row_rs_member_list = mysql_fetch_assoc($rs_member_list)); ?>

so from this I can end up with 1 to 20 or more values "Pub_1=123&Pub_3=124" and so on... I wanted to know if I could store this sting in a ecart column in this format?

I tried to make it sort the value in an array but it would not store it correctly

do {
if (isset($_POST['Pub_'.++$iurl])) {
$Publist[] = $_POST['Pub_'.$iurl];
}
} while ($iurl != $totalRows_rs_member_list); $iurl = 0;

Sign in to reply to this post

Jason ByrnesWebAssist

if you name the checkboxes using the same name and "[]" at the end, the values will already be stored in an array
<input type="checkbox" name="Pub[]" value="<?php echo $row_rs_member_list['ID'];?>" />

you can then convert the array to a comma separated list using the implode function:

php:
<?php echo(implode(", "$_POST['Pub'])); ?>




more on the implode function here:
implode

Sign in to reply to this post

ijs174940Beta Tester

Hi Jason
Hi Jason, I finely got it to work, thanks for pointing me in the right direction used this eventually.

// page post defualts
$ProductPubList = implode(", ", $_POST['Pub']);
$SelectedPubList = explode(", ", $ProductPubList);

// load item selected options from cart contents sent from viewcart page
$array1 = $LWV->DisplayInfo("Publist");
$pubarraylist = explode(", ", $array1)

<?php if ((in_array($row_rs_member_list['ID'], $SelectedPubList, TRUE)) ||(in_array($row_rs_member_list['ID'],$pubarraylist,TRUE))) {echo "checked=\"checked\"";} ?> type="checkbox" name="Pub[]" value="<?php echo $row_rs_member_list['ID'];?>" />

Sign in to reply to this post

Jason ByrnesWebAssist

glad to hear you have it working.

Sign in to reply to this post

Build websites with a little help from your friends

Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.

Build websites from already-built web applications

These out-of-the-box solutions provide you proven, tested applications that can be up and running now.  Build a store, a gallery, or a web-based email solution.

Want your website pre-built and hosted?

Close Windowclose

Rate your experience or provide feedback on this page

Account or customer service questions?
Please user our contact form.

Need technical support?
Please visit support to ask a question

Content

rating

Layout

rating

Ease of use

rating

security code refresh image

We do not respond to comments submitted from this page directly, but we do read and analyze any feedback and will use it to help make your experience better in the future.

Close Windowclose

We were unable to retrieve the attached file

Close Windowclose

Attach and remove files

add attachmentAdd attachment
Close Windowclose

Enter the URL you would like to link to in your post

Close Windowclose

This is how you use right click RTF editing

Enable right click RTF editing option allows you to add html markup into your tutorial such as images, bulleted lists, files and more...

-- click to close --

Uploading file...