Search found 10 matches

by masterblaster
Tue Apr 26, 2016 11:00 pm
Forum: PHP - Code
Topic: unexpected T_PROTECTED on line 3
Replies: 7
Views: 2767

Re: unexpected T_PROTECTED on line 3

Thx Christopher and requinix.
All right. [SOLVED]
by masterblaster
Tue Apr 26, 2016 10:30 am
Forum: PHP - Code
Topic: unexpected T_PROTECTED on line 3
Replies: 7
Views: 2767

Re: unexpected T_PROTECTED on line 3

Sorry guys. The right file is: <?php// The general information at the top of each file/*** @version 4.0.7 Release for Joomla 2.5* @package Joomla* @copyright Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved.* @license GNU General Public License, see LICENSE.php*/ // No direct ...
by masterblaster
Fri Apr 22, 2016 10:52 am
Forum: PHP - Code
Topic: unexpected T_PROTECTED on line 3
Replies: 7
Views: 2767

unexpected T_PROTECTED on line 3

Line 3 isn't correct? :crazy: why?why? <?php // The general information at the top of each file /** * @version 4.0.7 Release for Joomla 2.5 * @package Joomla * @copyright Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License, see LICENSE.php *...
by masterblaster
Tue Jul 29, 2014 2:14 am
Forum: PHP - Code
Topic: Kinda Stuck. Don't know what to try next. [SOLVED]
Replies: 4
Views: 3451

Re: Kinda Stuck. Don't know what to try next.

Just wanted to follow up on this, since it's now solved. I don't actually know what was wrong with it because all I did was reinstall Server 2008. Set up IIS, PHP, ADDS & ADCS again, which I could only do since it was a test environment, so if you were to have this problem on a deployed Domain ...
by masterblaster
Fri Oct 04, 2013 4:30 am
Forum: General Discussion
Topic: web solution + GSM/GPRS modem: best way to communicate
Replies: 0
Views: 1787

web solution + GSM/GPRS modem: best way to communicate

The main goal of my project is to make web site where you can see the state of multiple hardware devices. The communication between web site and these devices can be achieved using GSM/GPRS network. - What is best way to make communication between them? Which techniques can be used? Are PHP + JavaSc...
by masterblaster
Fri Dec 28, 2012 9:35 am
Forum: PHP - Code
Topic: Loading a given URL on a below frame each amount of time
Replies: 1
Views: 583

Loading a given URL on a below frame each amount of time

I need some php code that loads a page in a below frame, each amount of minutes specified in a textbox, for example --------------------------------------- | URL: (textbox) | | interval: (textbox) | | Submit button | --------------------------------------- | | | Loaded page | -----------------------...
by masterblaster
Mon Jul 25, 2011 1:55 pm
Forum: PHP - Code
Topic: Need help on URL extractor
Replies: 3
Views: 463

Re: Need help on URL extractor

McInfo wrote:Define $url and remove the ampersand (&) on line 7. If $url is supposed to come from user input, use $_GET['url'] or $_POST['url'].
Could you provide me a example file.php that has the input textbox and the submit button? I don't know how to code.
by masterblaster
Mon Jul 25, 2011 11:42 am
Forum: PHP - Code
Topic: Need help on URL extractor
Replies: 3
Views: 463

Need help on URL extractor

I want to run locally a URL extractor, like this:
http://www.web-max.ca/PHP/misc_23.php
by masterblaster
Mon Jul 25, 2011 11:37 am
Forum: PHP - Code
Topic: what is md5 thing on some site for downloads?
Replies: 1
Views: 258

Re: what is md5 thing on some site for downloads?

It is a thing called checksum, in order to know if your file has been altered after download. Sometimes, files are corrupted or altered, whether intentionally or not, even if the file has the same name and size in bytes. So, to know if it has been altered, you can do MD5 checksum on it and see if ma...