Skip to content

Instantly share code, notes, and snippets.

@gaurish
Created July 11, 2012 20:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gaurish/07b4dfb1771590e5ed42 to your computer and use it in GitHub Desktop.
Save gaurish/07b4dfb1771590e5ed42 to your computer and use it in GitHub Desktop.
<?php
if($data['stat'] == "ok"){
logActivity("[Cactiapc] Monitor created. id= $data[\"monitor\"][\"id\"]");
}
else {
logActivity("[Cactiapc] Monitor NOT created. Error Details $data['message']");
}
@PeeHaa
Copy link

PeeHaa commented Jul 11, 2012

<?php

if($data['stat'] == "ok"){
    logActivity("[Cactiapc] Monitor created. id= " . $data["monitor"]["id"]);
}
else {
    logActivity("[Cactiapc] Monitor NOT created. Error Details " . $data['message']);
}

http://php.net/manual/en/language.operators.string.php

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment