Skip to content

Instantly share code, notes, and snippets.

@AfonsoTsukamoto
Last active December 19, 2015 04:48
Show Gist options
  • Save AfonsoTsukamoto/5899336 to your computer and use it in GitHub Desktop.
Save AfonsoTsukamoto/5899336 to your computer and use it in GitHub Desktop.
Just a _SELF_ reminder for this function that is pretty useful sometimes.
<?php
function php_alert($message){
echo "<script type='text/javascript'>!function(){ alert('". $message . "');}()</script>";
}
//example
...
$result = mysqli_query($someconnection, "SELECT * FROM table");
if(!$result){
php_alert('No result. Damn!');
}else{
...
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment