10 lines
203 B
PHP
10 lines
203 B
PHP
|
<?php
|
||
|
|
||
|
// TODO: Poner esto resizable y dragable: http://jqueryui.com/demos/dialog
|
||
|
|
||
|
echo "<div style='margin-top: 30px; width: 550px; margin-left: 50px'>";
|
||
|
echo $_SESSION["alert_msg"];
|
||
|
echo "</div>";
|
||
|
|
||
|
?>
|