Strict Standards: Only variables should be assigned by refer
Posted 11 years 6 months ago
I developed a joomla site on url
www.develop.breede.co.za
and on there I have a PHP script for a call rates calulator that worked perfectly.
I then moved the moved to
www.breede.co.za
and now the script works perfectly, but I get the following error:
Strict Standards: Only variables should be assigned by reference in /usr/www/users/breedh/modules/mod_flexi_customcode/tmpl/default.php on line 25 Strict Standards: Non-static method modFlexiCustomCode::parsePHPviaFile() should not be called statically in /usr/www/users/breedh/modules/mod_flexi_customcode/tmpl/default.php on line 55
What confuses me is, that it is the same server, just a different domain name.
The code I use is:
<p>Please type in a telephone number (local, mobile or international) to calculate the call cost. </p>
<form id="lookupNumber" method="post" action="javascript:void(0);">
<table class="table table-condensed">
<tbody>
<tr>
<td><b>Telephone number:</b></td>
<td><input type="text" name="number" id="number" maxlength="20" style="width: 15em;" value="">
<input type="hidden" name="tariffs" value="breedenet"></td>
</tr>
<tr>
<td></td>
<td><input type="submit" name="action" class="btn btn-inverse" value="Search"></td>
</tr>
</tbody>
</table>
</form>