Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>I have rewritten and cleaned up some of your code. <strong>This is untested</strong>, but hopefully it will get you going in the right direction.</p> <pre><code>$product_ids = array(1,3,5,7,9,11,13,15,17,18,19,20,21,22,24,26,27,28,29,30,31,33,41,43,45,47,49,51,54,55,57,58); $msg = ''; $num_items = 0; if ( array_key_exists('num_cart_items', $response) ) $num_items = intval($response['num_cart_items']); if ( !empty($num_items) ) { $string1 = 'item_name'; $string2 = 'item_number'; $firstname = $response['first_name']; $lastname = $response['last_name']; $total = $response['mc_gross']; for ($i = 1; $i &lt;= $num_items; $i++) { $item_number = $response['item_number'.$i]; $item_name = $response['item_name'.$i]; $qty = $response['quantity'.$i]; $id = $response['item_number'.$i]; // do something with these vars since they change every iteration through the loop and only exist within the scope of the loop. if ( in_array($item_number, $product_ids) ) { $msg = '&lt;p&gt;&lt;div id="bold"&gt;Produkter tillgängliga för nerladdning/lyssning&lt;/div&gt;&lt;/p&gt;&lt;br&gt;'; } } } echo ' &lt;div id="wrapper"&gt; &lt;div id="welcomeText"&gt;Tack för ditt köp!&lt;/div&gt; &lt;div class="abouttext3"&gt;Har du köpt produkter som ska laddas ned, laddar du ned dem NU till din dator. &lt;br&gt; Du har endast möjlighet att ladda ned från just den här sidan.&lt;br&gt; Stanna kvar på sidan tills du laddat ned ALLT du köpt. &lt;br&gt;OBS! Om du stänger ned sidan har du inte möjlighet att komma tillbaka till den.&lt;br&gt; Har du köpt en lyssning av ”Guidning till förlåtelse” lyssnar du på den HÄR och NU. &lt;br&gt; Var kvar på sidan tills du lyssnat klart. &lt;br&gt; OBS! Om du stänger ned sidan har du inte möjlighet att komma tillbaka till den. &lt;br /&gt; Har du köpt varor som levereras med Posten, skickas de så snart som möjligt från oss. &lt;br&gt; Allra senast inom en vecka. &lt;/div&gt; &lt;div class="abouttext2"&gt;Vi önskar Dig en bra dag. &lt;br&gt; Välkommen tillbaka till energyshop.se när du vill! &lt;/div&gt;' . $msg; // If item_number matches any product that is for download/listetning, then print this headline </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload