<img class="alignnone" src="https://lh3.googleusercontent.com/-XM8R0JWk_aQ/V8IKcAaM2EI/AAAAAAAKPmI/J3StoyFyzN8tB6C_c7DDldIT39RJAuBTQCJoC/s0/2016-08-25%2B22.47.13.png" alt="" />

Screenshot taken from my old S4, but I was just wondering if similar functionality was present to attach/link to S Notes from calendar events. Or, conversely, create calendar events from notes?

Seems such a shame the older S4 did this with S Memo, and the newer Note software does not.

PHP logo

PHP.  It’s been a little while since I had to deal with you but, seriously, is this really a thing?

[php]$value = 10;
$temp = 0;
   
for($ctr = 0; $ctr < $value; $ctr++) {

echo "value + ctr: " . $value + $ctr . "<br>";
// this doesn’t work?!

$temp = $value + $ctr;
echo "value + ctr: " . $temp . "<br>";
// … but this does work?

}[/php]

Perhaps (hopefully) things have changed in PHP7?