Hi,
I am getting the above error. I am calling the function search_slideshow(). My home page is like this:
<?php include 'search_slideshow.php'; ?>
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
</head>
<body>
<?php
$findme = 'jassim'; echo $findme;
search_slideshare($findme)
?>
</body>
</html>
and my function is in search_slideshow.php like this:
function search_slideshare($query)
{
....... code here
}
can anyone help please