I have a PHP script in which I need to " simply fire " another script though, without losing the flow of the current script.
Example:
<?php
// um comando
// outro comando
//*** Aqui preciso, por exemplo, disparar o script: teste.php
// outro comando
// outro comando
// outro comando
//*** Aqui preciso novamente disparar o script: teste.php
// outro comando
// outro comando
// outro comando
// outro comando
// fim
(OBS: Servidor compartilhado Locaweb)
?>