<!-- m --><a class="postlink" href="http://www.richmastaplus.net/mysite">http://www.richmastaplus.net/mysite</a><!-- m -->
PHP Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of xml_set_object(). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. However, future versions may not support this any longer. in E:\web\richmastapl\htdocs\mysite\rss2.php on line 119
xml_set_object( $xml_parser, &$rss_parser );
xml_set_element_handler( $xml_parser, "startElement", "endElement" );
xml_set_character_data_handler( $xml_parser, "characterData" );
$fp = fopen("$file","r") or die( "Error reading XML file, $file" );Is there a specific reason that you need to pass by reference? If not, just remove the red &.xml_set_object( $xml_parser, &$rss_parser );
PHP Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of xml_set_object(). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. However, future versions may not support this any longer. in E:\web\richmastapl\htdocs\mysite\rss2.php on line 119
xml_set_object( $xml_parser, &$rss_parser );
xml_set_element_handler( $xml_parser, "startElement", "endElement" );
xml_set_character_data_handler( $xml_parser, "characterData" );
$fp = fopen("$file","r") or die( "Error reading XML file, $file" );Is there a specific reason that you need to pass by reference? If not, just remove the red &.xml_set_object( $xml_parser, &$rss_parser );