pnotify help

Proximity

IDK?
Feb 13, 2014
673
56
Hello,

I have this code
Code:
else
        {
        print "<p class=\"small_content_mid\" style=\"margin-left:auto; margin-right:auto; color:red; font-weight: bold;\">The radio is currently offline, or the DJ was not found. At this current time, you cannot love the DJ. We apologise for the inconvenience. Check back again later!</p>";
        }

            exit;
    }
    print "<<p class=\"small_content_mid\" style=\"margin-left:auto; margin-right:auto; color:red; font-weight: bold;\">There was a fatal error. At this current time, you cannot love the DJ. We apologise for the inconvenience. Check back again later!</p>"; 

}

I want to intergrate pnotify into this is there any ideas how I would do this>?
 

Weasel

👄 I'd intercept me
Nov 25, 2011
4,132
2,456
Quick (/ugly) way:
Code:
else
        {
       ?>
           <script>
           new PNotify({
            title: 'Offline',
            text: 'Fucking radio is offline mate.'
        });
           </script>
       <?php
        }

            exit;
    }
    ?>

    <?php
    <script>
           new PNotify({
            title: 'Fatal Error',
            text: 'I fucked up'
        });
    </script>
}
 

Users who are viewing this thread

Top