Posts by tiagopraz • 11 points
2 posts
-
0
votes2
answers386
viewsQ: Pass jquery value to php
I’m looking for a div from another page and putting in my: my div: <div id="teste"></div> script: <script type="text/javascript"> $("#teste").load("http://www.home356.org/index.php…
-
1
votes0
answers745
viewsQ: Picking up content from a page with PHP
I’m taking all the contents of a page with the code: <?php $url = 'http://www.teste.com.br'; $dadosSite = file_get_contents($url); echo $dadosSite; ?> Works normally and was better than using…