1
0
mirror of https://github.com/maximebf/php-debugbar.git synced 2025-01-17 05:18:32 +01:00
php-debugbar/demo/iframes/iframe2.php
2024-03-21 22:06:32 +01:00

20 lines
368 B
PHP

<?php
include '../bootstrap.php';
$debugbarRenderer->setBaseUrl('../../src/DebugBar/Resources');
$debugbar['messages']->addMessage('I\'m a Deeper Hidden Iframe');
render_demo_page(function() {
?>
<script type="text/javascript">
$(function() {
$.get('../ajax.php', function(data) {
//ajax from IFRAME
});
});
</script>
<?php
});