<snip>
> Warning: Undefined variable: Titlesearch in
> d:\apache\htdocs\bkhtml\movies.php on line 22
>
> This is line 22 of movies.php:
>
> print "<form name=\"search\" method=\"get\"
> action=\"movies/mysql_moviedb_search.php?Titlesearch=$Titlesearch\">\n";
are you sure your variable is capitalized previously?
>
> I also get this error:
>
> Warning: Use of undefined constant link - assumed 'link' in
> d:\apache\htdocs\bkhtml\movies\mysql_movieindex.php on line 15
>
> And this is lines 13-15 of mysql_movieindex.php:
>
> $link = mysql_pconnect("localhost",$user,$pass);
> if(!link)
you forgot the $ in front of link.....you want if(!$link)
all the best,
jack
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]