Helpme please, div content in variable php

If something doesn't fit in any other forum then post it here.
Forum rules
READ NOW: L2j Forums Rules of Conduct
Post Reply
t-dat0r
Posts: 52
Joined: Sun Jul 31, 2011 3:05 am

Helpme please, div content in variable php

Post by t-dat0r »

Hello I need to read and save the contents of a div on a php variable: :idea:
<div id="content"> that I read </ div>

please help me
User avatar
Zoey76
L2j Inner Circle
L2j Inner Circle
Posts: 7008
Joined: Tue Aug 11, 2009 3:36 am

Re: Helpme please, div content in variable php

Post by Zoey76 »

Moved to viewforum.php?f=4, since viewforum.php?f=46 is for L2J related scripts.

For the information you need please visit this site: http://www.w3schools.com/php/php_forms.asp
Powered by Eclipse 4.34 ๐ŸŒŒ | Eclipse Temurin 21 โ˜• | MariaDB 11.3.2 ๐Ÿ—ƒ๏ธ | L2J Server 2.6.3.0 - High Five ๐Ÿš€

๐Ÿ”— Join our Discord! ๐ŸŽฎ๐Ÿ’ฌ
t-dat0r
Posts: 52
Joined: Sun Jul 31, 2011 3:05 am

Re: Helpme please, div content in variable php

Post by t-dat0r »

hello, thanks for replying, but I need is to read a html, find a div and read the contents,

Code: Select all

ย <?//myphp$url="html_file.html";$ch=curl_init();$timeout = 60;curl_setopt ($ch, CURLOPT_URL, $url);curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);$file_contents = curl_exec($ch);curl_close($ch);?>ย 

Code: Select all

ย my html...ย read in html ( <div name="contentread">I want to read this content</div> )ย 
with this function I want to read the votes Topzone current as does the vote reward system (java) but in php
User avatar
Zoey76
L2j Inner Circle
L2j Inner Circle
Posts: 7008
Joined: Tue Aug 11, 2009 3:36 am

Re: Helpme please, div content in variable php

Post by Zoey76 »

This has everything you need and more to get the job done:
Source: http://simplehtmldom.sourceforge.net/
Example: http://davidwalsh.name/php-notifications

You could do it hardcoded for a specific site without using the API.
Powered by Eclipse 4.34 ๐ŸŒŒ | Eclipse Temurin 21 โ˜• | MariaDB 11.3.2 ๐Ÿ—ƒ๏ธ | L2J Server 2.6.3.0 - High Five ๐Ÿš€

๐Ÿ”— Join our Discord! ๐ŸŽฎ๐Ÿ’ฌ
t-dat0r
Posts: 52
Joined: Sun Jul 31, 2011 3:05 am

Re: Helpme please, div content in variable php

Post by t-dat0r »

i made it :)

thks!!
Post Reply