PHP Fatal error: Uncaught Error: Call to undefined function

7.2k Views Asked by At

I have recently migrated from the old PHP5xx to PHP7.4.23 version and below is the error message when localhost URL is tested. I can confirm the index.php has reference to include rightbar.php from the same folder destination. If I remove the reference to rightbar.php then the website loads perfectly. I am not a coder but would need some great help on this. Website error:`PHP Fatal error:

Uncaught Error: Call to undefined function getResultBYkeyword() in C:\inetpub\wwwroot\tamilmelisai\rightbar.php:169 Stack trace: #0 C:\inetpub\wwwroot\tamilmelisai\index.php(28): include() #1 {main} thrown in C:\inetpub\wwwroot\tamilmelisai\rightbar.php on line 169`

Line 169 of rightbar.php has the following code:

<?php $videoDetailstops = getResultBYkeyword("latest tamil trailers",3); if(count($videoDetailstops)):?>
                  
1

There are 1 best solutions below

1
On

After lots and trial and error, fianlly below is the solution that I worked it out even though I am not a coder by any chance. Appreciate all those who looked at the query and responded. Form this:

<?php $videoDetailstops = getResultBYkeyword("latest tamil trailers",3); if(count($videoDetailstops)):?>

To this:

<?php if (isset ($videoDetailstops) && $videoDetailstops = getResultBYkeyword("latest tamil trailers",3));?>