Jump to content

foreach loop variable string


Scooby08

Recommended Posts

I have a foreach loop that I need the variable to be different if something is true.. This is hard to explain, but an example should work.. It's complete wrong, but should give the idea as to what I'm trying to do..

 

Have a simple loop:

<?php
// have a select query here to create the $event_ID_array
foreach ($events as $event) {
$x = (in_array($event['ID'],$event_ID_array))?'update':'insert';
$sql_$x .= $event['date'];
}
echo $sql_update;
echo $sql_insert;
?>

 

Am trying to collect the data in a string depending on whether that event exists in the database or not.

Link to comment
Share on other sites

Your much better off using arrays instead of variable variables (which is what your attempting).

 

<?php
$result = array();
foreach ($events as $event) {
  $x = (in_array($event['ID'],$event_ID_array))?'update':'insert';
  $result[$x] .= $event['date'];
}

echo $result['update'];
echo $result['insert'];

?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.