Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

problem with mysql

Guest
Nov 12, 2008 Nov 12, 2008
When I preview my page I receive this massage:
Warning: mysql_free_result(): supplied argument is not a valid MySQL result resource

My web page: www.justiciadedios.com/newSite/index.php

how can I fix it
TOPICS
Server side applications
256
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Nov 12, 2008 Nov 12, 2008
LATEST
jesurum wrote:
> When I preview my page I receive this massage:
> Warning: mysql_free_result(): supplied argument is not a valid MySQL result
> resource
>
> My web page: www.justiciadedios.com/newSite/index.php

PHP is a server-side language, and all the PHP remains on the server. So
providing a URL to a live web page shows nothing of your PHP code.

I suspect that you had a recordset on the page, but deleted it manually,
rather than through the Server Behaviors panel. As a result, the
mysql_free_result() code was left at the bottom of the page (below the
closing html tag), generating the error.

--
David Powers, Adobe Community Expert
Author, "The Essential Guide to Dreamweaver CS3" (friends of ED)
Author, "PHP Solutions" (friends of ED)
http://foundationphp.com/
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines